mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Add ldap_ prefix to md5 calls.
Patch submitted by Chris Smith <csmith@platform.com>
This commit is contained in:
parent
007cbfc8f1
commit
c246205958
@ -72,9 +72,9 @@ crypted_value_find(
|
||||
|
||||
char *userpassword = vals[i]->bv_val + sizeof("{MD5}") - 1;
|
||||
|
||||
MD5Init(&MD5context);
|
||||
MD5Update(&MD5context, cred->bv_val, strlen(cred->bv_val));
|
||||
MD5Final(MD5digest, &MD5context);
|
||||
ldap_MD5Init(&MD5context);
|
||||
ldap_MD5Update(&MD5context, cred->bv_val, strlen(cred->bv_val));
|
||||
ldap_MD5Final(MD5digest, &MD5context);
|
||||
|
||||
if (b64_ntop(MD5digest, sizeof(MD5digest),
|
||||
base64digest, sizeof(base64digest)) < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user