]> git.sur5r.net Git - openldap/commitdiff
Use DES_* functions instead of deprecated des_*
authorQuanah Gibson-Mount <quanah@openldap.org>
Tue, 27 May 2008 22:01:46 +0000 (22:01 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Tue, 27 May 2008 22:01:46 +0000 (22:01 +0000)
contrib/slapd-modules/smbk5pwd/smbk5pwd.c

index 38b8b47102d00e19aab9a32bd380602307c47f43..de8d758bdf9d2ea35e7f2fc9ad624667710f85db 100644 (file)
@@ -114,7 +114,7 @@ static const char hex[] = "0123456789abcdef";
 /* From liblutil/passwd.c... */
 static void lmPasswd_to_key(
        const char *lmPasswd,
-       des_cblock *key)
+       DES_cblock *key)
 {
        const unsigned char *lpw = (const unsigned char *)lmPasswd;
        unsigned char *k = (unsigned char *)key;
@@ -162,10 +162,10 @@ static void lmhash(
 )
 {
        char UcasePassword[15];
-       des_cblock key;
-       des_key_schedule schedule;
-       des_cblock StdText = "KGS!@#$%";
-       des_cblock hbuf[2];
+       DES_cblock key;
+       DES_key_schedule schedule;
+       DES_cblock StdText = "KGS!@#$%";
+       DES_cblock hbuf[2];
 
        strncpy( UcasePassword, passwd->bv_val, 14 );
        UcasePassword[14] = '\0';