From: Richard Levitte Date: Thu, 29 Mar 2001 20:30:23 +0000 (+0000) Subject: One des_encrypt to des_encrypt1 I forgot to commit... X-Git-Tag: OpenSSL_0_9_6c~182^2~311 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=ae6dfff5bf32db6934b2c53863bdb373927cab60 One des_encrypt to des_encrypt1 I forgot to commit... --- diff --git a/crypto/mdc2/mdc2dgst.c b/crypto/mdc2/mdc2dgst.c index 3a873d147a..bf67c03ffc 100644 --- a/crypto/mdc2/mdc2dgst.c +++ b/crypto/mdc2/mdc2dgst.c @@ -138,11 +138,11 @@ static void mdc2_body(MDC2_CTX *c, const unsigned char *in, unsigned int len) des_set_odd_parity(&c->h); des_set_key_unchecked(&c->h,k); - des_encrypt(d,k,1); + des_encrypt1(d,k,1); des_set_odd_parity(&c->hh); des_set_key_unchecked(&c->hh,k); - des_encrypt(dd,k,1); + des_encrypt1(dd,k,1); ttin0=tin0^dd[0]; ttin1=tin1^dd[1];