diff options
Diffstat (limited to 'src/lib/libcrypto/des/xcbc_enc.c')
-rw-r--r-- | src/lib/libcrypto/des/xcbc_enc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libcrypto/des/xcbc_enc.c b/src/lib/libcrypto/des/xcbc_enc.c index 744021c255..dc4607e8aa 100644 --- a/src/lib/libcrypto/des/xcbc_enc.c +++ b/src/lib/libcrypto/des/xcbc_enc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: xcbc_enc.c,v 1.7 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: xcbc_enc.c,v 1.8 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 | * |
@@ -114,11 +114,11 @@ void DES_xcbc_encrypt(const unsigned char *in, unsigned char *out, | |||
114 | DES_cblock *ivec, const_DES_cblock *inw, | 114 | DES_cblock *ivec, const_DES_cblock *inw, |
115 | const_DES_cblock *outw, int enc) | 115 | const_DES_cblock *outw, int enc) |
116 | { | 116 | { |
117 | register DES_LONG tin0,tin1; | 117 | DES_LONG tin0,tin1; |
118 | register DES_LONG tout0,tout1,xor0,xor1; | 118 | DES_LONG tout0,tout1,xor0,xor1; |
119 | register DES_LONG inW0,inW1,outW0,outW1; | 119 | DES_LONG inW0,inW1,outW0,outW1; |
120 | register const unsigned char *in2; | 120 | const unsigned char *in2; |
121 | register long l=length; | 121 | long l=length; |
122 | DES_LONG tin[2]; | 122 | DES_LONG tin[2]; |
123 | unsigned char *iv; | 123 | unsigned char *iv; |
124 | 124 | ||