From 080b8cadfa9a9c7655fb0dbd5e432b09d708ab3b Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 29 Mar 2001 07:45:37 +0000 Subject: Since there has been reports of clashes between OpenSSL's des_encrypt() and des_encrypt() defined on some systems (Solaris and Unixware and maybe others), we rename des_encrypt() to des_encrypt1(). This should have very little impact on external software unless someone has written a mode of DES, since that's all des_encrypt() is meant for. --- crypto/des/ofb64enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/des/ofb64enc.c') diff --git a/crypto/des/ofb64enc.c b/crypto/des/ofb64enc.c index 64953959ca..1a1d1f1ac4 100644 --- a/crypto/des/ofb64enc.c +++ b/crypto/des/ofb64enc.c @@ -87,7 +87,7 @@ void des_ofb64_encrypt(register const unsigned char *in, { if (n == 0) { - des_encrypt(ti,schedule,DES_ENCRYPT); + des_encrypt1(ti,schedule,DES_ENCRYPT); dp=d; t=ti[0]; l2c(t,dp); t=ti[1]; l2c(t,dp); -- cgit v1.2.3