]> git.sur5r.net Git - openldap/blob - doc/man/man8/slappasswd.8
8321419b423b0275c8bf9446bd45fbddcf0569b8
[openldap] / doc / man / man8 / slappasswd.8
1 .TH SLAPPASSWD 8C "20 August 2000" "OpenLDAP LDVERSION"
2 .\" $OpenLDAP$
3 .\" Copyright 1998-2000 The OpenLDAP Foundation All Rights Reserved.
4 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
5 .SH NAME
6 slappasswd \- OpenLDAP password utility
7 .SH SYNOPSIS
8 .B SBINDIR/slappasswd
9 .B [\-v]
10 .B [\-u]
11 .B [\-s secret]
12 .B [\-h hash]
13 .B [\-c salt-format]
14 .B 
15 .LP
16 .SH DESCRIPTION
17 .LP
18 .B Slappasswd
19 is used to generate an userPassword value
20 suitable for use with
21 .BR ldapmodify (1)
22 or
23 .BR slapd.conf (5)
24 .I rootpw
25 configuration directive.
26 .SH OPTIONS
27 .TP
28 .B \-v
29 enable verbose mode.
30 .TP
31 .B \-u
32 Generate RFC2307 userPassword values (the default).  Future
33 versions of this program may generate alternative syntaxes
34 by default.  This option is provided for forward compatibility.
35 .TP
36 .BI \-s " secret"
37 The secret to hash.  If not provided, the user will be prompted
38 for the secret to hash.
39 .TP
40 .BI \-h " scheme"
41 If -h is specified, one of the following RFC2307 schemes may
42 be specified:
43 .IR {CRYPT} ,
44 .IR {MD5} ,
45 .IR {SMD5} ,
46 .IR {SSHA} ", and"
47 .IR {SHA} .
48 The default is 
49 .IR {SSHA} .
50 .TP
51 .BI \-c " crypt-salt-format"
52 Specify the format of the salt passed to
53 .BR crypt (3)
54 when generating {CRYPT} passwords.  
55 This string needs to be in
56 .BR sprintf (3)
57 format and may include one (and only one) %s conversion.
58 This conversion will be substituted with a string random
59 characters from [A\-Za\-z0\-9./].  For example, "%.2s"
60 provides a two character salt and "$1$%.8s" tells some
61 versions of crypt(3) to use an MD5 algorithm and provides
62 8 random characters of salt.  The default is "%s", which
63 provides 31 characters of salt.
64 .SH LIMITATIONS
65 The practice storing hashed passwords in userPassword violates
66 Standard Track (RFC2256) schema specifications and may hinder
67 interoperability.  A new attribute type to hold hashed
68 passwords is needed.
69 .SH "SECURITY CONSIDERATIONS"
70 Use of hashed passwords does not protect passwords during
71 protocol transfer.  TLS or other eavesdropping protections
72 should be inplace before using LDAP simple bind.  The
73 hashed password values should be protected as if they
74 were clear text passwords.
75 .SH "SEE ALSO"
76 .BR ldappasswd (1),
77 .BR ldapmodify (1),
78 .BR slapd (8)
79 .BR slapd.conf (5)
80 .LP
81 "OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
82 .SH ACKNOWLEDGEMENTS
83 OpenLDAP is developed and maintained by
84 The OpenLDAP Project (http://www.openldap.org/).
85 OpenLDAP is derived from University of Michigan LDAP 3.3 Release.