From 4855eb75a7701e011ad88e537e6f3d6b760eaea8 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 29 Mar 2001 20:37:32 +0000 Subject: [PATCH] One des_encrypt to des_encrypt1 I forgot to commit... --- crypto/mdc2/mdc2dgst.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]; -- 2.25.1