use byte counts, not bit counts
authorJohn Kohl <jtkohl@mit.edu>
Wed, 27 Feb 1991 13:33:33 +0000 (13:33 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Wed, 27 Feb 1991 13:33:33 +0000 (13:33 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1807 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/md4/md4crypto.c

index 0ecdded17f9beaf91f4a0a747a914983ae507d35..c61f796d85b5ae718cea472467f16cf2929fc952 100644 (file)
@@ -39,7 +39,7 @@ krb5_checksum *outcksum;
     MD4_CTX working;
 
     MD4Init(&working);
-    MD4Update(&working, input, in_length*8);
+    MD4Update(&working, input, in_length);
     MD4Final(&working);
 
     outcksum->checksum_type = CKSUMTYPE_RSA_MD4_DES;