diff options
Diffstat (limited to 'src/lib/libcrypto/des/des_locl.h')
-rw-r--r-- | src/lib/libcrypto/des/des_locl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/des/des_locl.h b/src/lib/libcrypto/des/des_locl.h index 9480d37489..38ac68a6e6 100644 --- a/src/lib/libcrypto/des/des_locl.h +++ b/src/lib/libcrypto/des/des_locl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: des_locl.h,v 1.17 2014/08/18 19:15:34 bcook Exp $ */ | 1 | /* $OpenBSD: des_locl.h,v 1.18 2014/10/28 07:35:58 jsg Exp $ */ |
2 | /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -363,7 +363,7 @@ static inline uint32_t ROTATE(uint32_t a, uint32_t n) | |||
363 | 363 | ||
364 | #define IP(l,r) \ | 364 | #define IP(l,r) \ |
365 | { \ | 365 | { \ |
366 | register DES_LONG tt; \ | 366 | DES_LONG tt; \ |
367 | PERM_OP(r,l,tt, 4,0x0f0f0f0fL); \ | 367 | PERM_OP(r,l,tt, 4,0x0f0f0f0fL); \ |
368 | PERM_OP(l,r,tt,16,0x0000ffffL); \ | 368 | PERM_OP(l,r,tt,16,0x0000ffffL); \ |
369 | PERM_OP(r,l,tt, 2,0x33333333L); \ | 369 | PERM_OP(r,l,tt, 2,0x33333333L); \ |
@@ -373,7 +373,7 @@ static inline uint32_t ROTATE(uint32_t a, uint32_t n) | |||
373 | 373 | ||
374 | #define FP(l,r) \ | 374 | #define FP(l,r) \ |
375 | { \ | 375 | { \ |
376 | register DES_LONG tt; \ | 376 | DES_LONG tt; \ |
377 | PERM_OP(l,r,tt, 1,0x55555555L); \ | 377 | PERM_OP(l,r,tt, 1,0x55555555L); \ |
378 | PERM_OP(r,l,tt, 8,0x00ff00ffL); \ | 378 | PERM_OP(r,l,tt, 8,0x00ff00ffL); \ |
379 | PERM_OP(l,r,tt, 2,0x33333333L); \ | 379 | PERM_OP(l,r,tt, 2,0x33333333L); \ |