diff options
author | Ben Laurie <ben@openssl.org> | 1999-03-09 12:37:23 +0100 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 1999-03-09 12:37:23 +0100 |
commit | b241fefd985920327b0a07bd48f59838065d93e2 (patch) | |
tree | 4205a05b915f7f1686277c3f40ddedd45b249ce7 /crypto/des | |
parent | Go faster. (diff) | |
download | openssl-b241fefd985920327b0a07bd48f59838065d93e2.tar.xz openssl-b241fefd985920327b0a07bd48f59838065d93e2.zip |
Fix quad checksum bug.
Diffstat (limited to 'crypto/des')
-rw-r--r-- | crypto/des/qud_cksm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/des/qud_cksm.c b/crypto/des/qud_cksm.c index 4d5301c241..93505354a6 100644 --- a/crypto/des/qud_cksm.c +++ b/crypto/des/qud_cksm.c @@ -133,7 +133,7 @@ des_cblock seed; } else { - lp=&output[out_count-i-1]; + lp=&output[(out_count-i-1)*8]; l2n(z1,lp); l2n(z0,lp); } |