- 论坛徽章:
- 0
|
OpenLDAP 的密码好像支持{SSHA}, {SHA}, {SMD5}, {MD5}, {CRYPT}, and {CLEARTEXT}这几种。不知道Dominio使用那种。OpenLDAP通过使用{}前缀来表明密码的加密方式。下面所附是Openldap的manpage供你参考:
password-hash <hash> [<hash>...]
This option configures one or more hashes to be used in
generation of user passwords stored in the userPassword
attribute during processing of LDAP Password Modify Extended
Operations (RFC 3062). The <hash> must be one of {SSHA},
{SHA}, {SMD5}, {MD5}, {CRYPT}, and {CLEARTEXT}. The default is
{SSHA}.
{SHA} and {SSHA} use the SHA-1 algorithm (FIPS 160-1), the
latter with a seed.
{MD5} and {SMD5} use the MD5 algorithm (RFC 1321), the latter
with a seed.
{CRYPT} uses the crypt(3).
{CLEARTEXT} indicates that the new password should be added to
userPassword as clear text.
Note that this option does not alter the normal user
applications handling of userPassword during LDAP Add, Modify,
or other LDAP operations. |
|