]> git.sur5r.net Git - openldap/commitdiff
ITS#5696 des_set_key -> des_set_key_and_parity
authorHoward Chu <hyc@openldap.org>
Fri, 3 Jul 2009 22:19:52 +0000 (22:19 +0000)
committerHoward Chu <hyc@openldap.org>
Fri, 3 Jul 2009 22:19:52 +0000 (22:19 +0000)
libraries/liblutil/passwd.c

index cb9f0e034ac7853783badeb4cb5f109b37650789..dc45c1b5093bf41958027323f82e2cddc1bb99e2 100644 (file)
@@ -657,7 +657,7 @@ static int chk_md5(
  * abstract away setting the parity.
  */
 static void
-des_set_key( des_key *key, unsigned char *keyData)
+des_set_key_and_parity( des_key *key, unsigned char *keyData)
 {
     memcpy(key, keyData, 8);
     des_set_odd_parity( key );
@@ -670,7 +670,7 @@ des_set_key( des_key *key, unsigned char *keyData)
  * implement MozNSS wrappers for the openSSL calls 
  */
 static void
-des_set_key( des_key *key, unsigned char *keyData)
+des_set_key_and_parity( des_key *key, unsigned char *keyData)
 {
     SECItem keyDataItem;
     PK11SlotInfo *slot;
@@ -825,7 +825,7 @@ static void lmPasswd_to_key(
        k[6] = ((lpw[5] & 0x3F) << 2) | (lpw[6] >> 6);
        k[7] = ((lpw[6] & 0x7F) << 1);
                
-       des_set_key( key, k );
+       des_set_key_and_parity( key, k );
 }      
 
 static int chk_lanman(