Do not define crypt(). The supported function is DES_crypt() (an des_crypt()
authorRichard Levitte <levitte@openssl.org>
Sun, 6 Oct 2002 00:23:28 +0000 (00:23 +0000)
committerRichard Levitte <levitte@openssl.org>
Sun, 6 Oct 2002 00:23:28 +0000 (00:23 +0000)
when backward compatibility is desired).

crypto/des/des_old.h

index 51b987422ad34be781fae64556b1abc368046037..1d8bf65101763f1d39716693c3f66f9488cc0115 100644 (file)
@@ -173,10 +173,12 @@ typedef struct _ossl_old_des_ks_struct
        DES_fcrypt((b),(s),(r))
 #define des_crypt(b,s)\
        DES_crypt((b),(s))
+#if 0
 #if !defined(PERL5) && !defined(__FreeBSD__) && !defined(NeXT) && !defined(__OpenBSD__)
 #define crypt(b,s)\
        DES_crypt((b),(s))
 #endif
+#endif
 #define des_ofb_encrypt(i,o,n,l,k,iv)\
        DES_ofb_encrypt((i),(o),(n),(l),&(k),(iv))
 #define des_pcbc_encrypt(i,o,l,k,iv,e)\
@@ -274,8 +276,10 @@ typedef struct _ossl_old_des_ks_struct
        _ossl_old_des_fcrypt((b),(s),(r))
 #define des_crypt(b,s)\
        _ossl_old_des_crypt((b),(s))
+#if 0
 #define crypt(b,s)\
        _ossl_old_crypt((b),(s))
+#endif
 #define des_ofb_encrypt(i,o,n,l,k,iv)\
        _ossl_old_des_ofb_encrypt((i),(o),(n),(l),(k),(iv))
 #define des_pcbc_encrypt(i,o,l,k,iv,e)\