diff options
author | Richard Levitte <levitte@openssl.org> | 2001-10-24 23:21:12 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-10-24 23:21:12 +0200 |
commit | c2e4f17c1a0d4d5115c6ede9492de1615fe392ac (patch) | |
tree | 14dda5edeaebac01b4baa3aa026c40a784a44266 /crypto/des/fcrypt_b.c | |
parent | Fix SSL handshake functions and SSL_clear() such that SSL_clear() (diff) | |
download | openssl-c2e4f17c1a0d4d5115c6ede9492de1615fe392ac.tar.xz openssl-c2e4f17c1a0d4d5115c6ede9492de1615fe392ac.zip |
Due to an increasing number of clashes between modern OpenSSL and
libdes (which is still used out there) or other des implementations,
the OpenSSL DES functions are renamed to begin with DES_ instead of
des_. Compatibility routines are provided and declared by including
openssl/des_old.h. Those declarations are the same as were in des.h
when the OpenSSL project started, which is exactly how libdes looked
at that time, and hopefully still looks today.
The compatibility functions will be removed in some future release, at
the latest in version 1.0.
Diffstat (limited to 'crypto/des/fcrypt_b.c')
-rw-r--r-- | crypto/des/fcrypt_b.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/des/fcrypt_b.c b/crypto/des/fcrypt_b.c index 86253bd5ca..8b6b0e8856 100644 --- a/crypto/des/fcrypt_b.c +++ b/crypto/des/fcrypt_b.c @@ -77,7 +77,7 @@ #define HPERM_OP(a,t,n,m) ((t)=((((a)<<(16-(n)))^(a))&(m)),\ (a)=(a)^(t)^(t>>(16-(n))))\ -void fcrypt_body(DES_LONG *out, des_key_schedule *ks, DES_LONG Eswap0, +void fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0, DES_LONG Eswap1) { register DES_LONG l,r,t,u; |