diff options
Diffstat (limited to 'src/lib/libcrypto/des/fcrypt_b.c')
-rw-r--r-- | src/lib/libcrypto/des/fcrypt_b.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libcrypto/des/fcrypt_b.c b/src/lib/libcrypto/des/fcrypt_b.c index 27a1617845..ad11a47d88 100644 --- a/src/lib/libcrypto/des/fcrypt_b.c +++ b/src/lib/libcrypto/des/fcrypt_b.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: fcrypt_b.c,v 1.8 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: fcrypt_b.c,v 1.9 2014/10/28 07:35:58 jsg Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -82,13 +82,13 @@ | |||
82 | void fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0, | 82 | void fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0, |
83 | DES_LONG Eswap1) | 83 | DES_LONG Eswap1) |
84 | { | 84 | { |
85 | register DES_LONG l,r,t,u; | 85 | DES_LONG l,r,t,u; |
86 | #ifdef DES_PTR | 86 | #ifdef DES_PTR |
87 | register const unsigned char *des_SP=(const unsigned char *)DES_SPtrans; | 87 | const unsigned char *des_SP=(const unsigned char *)DES_SPtrans; |
88 | #endif | 88 | #endif |
89 | register DES_LONG *s; | 89 | DES_LONG *s; |
90 | register int j; | 90 | int j; |
91 | register DES_LONG E0,E1; | 91 | DES_LONG E0,E1; |
92 | 92 | ||
93 | l=0; | 93 | l=0; |
94 | r=0; | 94 | r=0; |
@@ -100,7 +100,7 @@ void fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0, | |||
100 | for (j=0; j<25; j++) | 100 | for (j=0; j<25; j++) |
101 | { | 101 | { |
102 | #ifndef DES_UNROLL | 102 | #ifndef DES_UNROLL |
103 | register int i; | 103 | int i; |
104 | 104 | ||
105 | for (i=0; i<32; i+=4) | 105 | for (i=0; i<32; i+=4) |
106 | { | 106 | { |