diff options
Diffstat (limited to 'src/lib/libcrypto/rc5/rc5_enc.c')
-rw-r--r-- | src/lib/libcrypto/rc5/rc5_enc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/rc5/rc5_enc.c b/src/lib/libcrypto/rc5/rc5_enc.c index 8fdbabe8b6..3828fe29c5 100644 --- a/src/lib/libcrypto/rc5/rc5_enc.c +++ b/src/lib/libcrypto/rc5/rc5_enc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rc5_enc.c,v 1.2 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: rc5_enc.c,v 1.3 2014/10/28 07:35:59 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 | * |
@@ -64,9 +64,9 @@ void RC5_32_cbc_encrypt(const unsigned char *in, unsigned char *out, | |||
64 | long length, RC5_32_KEY *ks, unsigned char *iv, | 64 | long length, RC5_32_KEY *ks, unsigned char *iv, |
65 | int encrypt) | 65 | int encrypt) |
66 | { | 66 | { |
67 | register unsigned long tin0,tin1; | 67 | unsigned long tin0,tin1; |
68 | register unsigned long tout0,tout1,xor0,xor1; | 68 | unsigned long tout0,tout1,xor0,xor1; |
69 | register long l=length; | 69 | long l=length; |
70 | unsigned long tin[2]; | 70 | unsigned long tin[2]; |
71 | 71 | ||
72 | if (encrypt) | 72 | if (encrypt) |