diff options
Diffstat (limited to 'src/lib/libcrypto/idea/i_cfb64.c')
-rw-r--r-- | src/lib/libcrypto/idea/i_cfb64.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/idea/i_cfb64.c b/src/lib/libcrypto/idea/i_cfb64.c index 98fdd3ed00..b979aaef86 100644 --- a/src/lib/libcrypto/idea/i_cfb64.c +++ b/src/lib/libcrypto/idea/i_cfb64.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: i_cfb64.c,v 1.2 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: i_cfb64.c,v 1.3 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 | * |
@@ -68,9 +68,9 @@ void idea_cfb64_encrypt(const unsigned char *in, unsigned char *out, | |||
68 | long length, IDEA_KEY_SCHEDULE *schedule, | 68 | long length, IDEA_KEY_SCHEDULE *schedule, |
69 | unsigned char *ivec, int *num, int encrypt) | 69 | unsigned char *ivec, int *num, int encrypt) |
70 | { | 70 | { |
71 | register unsigned long v0,v1,t; | 71 | unsigned long v0,v1,t; |
72 | register int n= *num; | 72 | int n= *num; |
73 | register long l=length; | 73 | long l=length; |
74 | unsigned long ti[2]; | 74 | unsigned long ti[2]; |
75 | unsigned char *iv,c,cc; | 75 | unsigned char *iv,c,cc; |
76 | 76 | ||