From: Richard Levitte Date: Thu, 29 Mar 2001 20:37:32 +0000 (+0000) Subject: One des_encrypt to des_encrypt1 I forgot to commit... X-Git-Tag: OpenSSL_0_9_6a-beta3~12 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4855eb75a7701e011ad88e537e6f3d6b760eaea8;p=oweals%2Fopenssl.git One des_encrypt to des_encrypt1 I forgot to commit... --- diff --git a/crypto/mdc2/mdc2dgst.c b/crypto/mdc2/mdc2dgst.c index c630a24c2e..84c6c4551a 100644 --- a/crypto/mdc2/mdc2dgst.c +++ b/crypto/mdc2/mdc2dgst.c @@ -136,11 +136,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];