diff options
author | 2002-09-16 19:15:48 +0000 | |
---|---|---|
committer | 2002-09-16 19:15:48 +0000 | |
commit | cab92478533b5fa7713c36d19d13e26899c9ee55 (patch) | |
tree | 92ccda8d6274dfd76f5fc4c3c6504c6b6918fa27 /lib/libssl/src | |
parent | remove old files (diff) | |
download | wireguard-openbsd-cab92478533b5fa7713c36d19d13e26899c9ee55.tar.xz wireguard-openbsd-cab92478533b5fa7713c36d19d13e26899c9ee55.zip |
sync with 0.9.7-beta3
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/des/des_old.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libssl/src/crypto/des/des_old.h b/lib/libssl/src/crypto/des/des_old.h index 2b7c0fc02a8..51b987422ad 100644 --- a/lib/libssl/src/crypto/des/des_old.h +++ b/lib/libssl/src/crypto/des/des_old.h @@ -173,6 +173,10 @@ typedef struct _ossl_old_des_ks_struct DES_fcrypt((b),(s),(r)) #define des_crypt(b,s)\ DES_crypt((b),(s)) +#if !defined(PERL5) && !defined(__FreeBSD__) && !defined(NeXT) && !defined(__OpenBSD__) +#define crypt(b,s)\ + DES_crypt((b),(s)) +#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)\ |