Displaying 2 results from an estimated 2 matches for "ldap_md5_generate".
2004 Dec 22
2
bug in 99.13-rc2 in ldap md5 patch
...anybody use dovecot with ldap and md5 password?
i don't think so:-(
this patch would be useful to apply before the final 0.99.13.
anyway in the current 1.0 series the PLAIN-MD5 and LDAP-MD5 schema are
different. at least plain_md5_verify and plain_md5_generate differ from
ldap_md5_verify and ldap_md5_generate. why?
--
Levente "Si vis pacem para bellum!"
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: dovecot-ldap-md5-0.99.patch
URL: <http://dovecot.org/pipermail/dovecot/attachments/20041222/ff5b7a73/at...
2004 Aug 09
1
[PATCH] RPA authentication mechanism
...rd_generate_rpa(plaintext);
+}
+
static const struct password_scheme default_schemes[] = {
{ "CRYPT", crypt_verify, crypt_generate },
{ "MD5", md5_verify, md5_generate },
@@ -439,6 +451,7 @@ static const struct password_scheme defa
{ "LDAP-MD5", ldap_md5_verify, ldap_md5_generate },
{ "LANMAN", lm_verify, lm_generate },
{ "NTLM", ntlm_verify, ntlm_generate },
+ { "RPA", rpa_verify, rpa_generate },
{ NULL, NULL, NULL }
};
diff -urpNX /usr/share/dontdiff dovecot-1.0-test32.vanilla/src/auth/password-scheme.h dovecot-1.0-test32/src/auth/pa...