summaryrefslogtreecommitdiff
path: root/Cryptlib/OpenSSL/crypto/des/fcrypt_b.c
diff options
context:
space:
mode:
Diffstat (limited to 'Cryptlib/OpenSSL/crypto/des/fcrypt_b.c')
-rw-r--r--Cryptlib/OpenSSL/crypto/des/fcrypt_b.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/Cryptlib/OpenSSL/crypto/des/fcrypt_b.c b/Cryptlib/OpenSSL/crypto/des/fcrypt_b.c
index f6c88e15..b9e87383 100644
--- a/Cryptlib/OpenSSL/crypto/des/fcrypt_b.c
+++ b/Cryptlib/OpenSSL/crypto/des/fcrypt_b.c
@@ -99,11 +99,9 @@ void fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0,
#ifndef DES_UNROLL
register int i;
- for (i = 0; i < 32; i += 8) {
+ for (i = 0; i < 32; i += 4) {
D_ENCRYPT(l, r, i + 0); /* 1 */
D_ENCRYPT(r, l, i + 2); /* 2 */
- D_ENCRYPT(l, r, i + 4); /* 1 */
- D_ENCRYPT(r, l, i + 6); /* 2 */
}
#else
D_ENCRYPT(l, r, 0); /* 1 */