diff options
Diffstat (limited to 'src/lib/libcrypto/idea/i_ofb64.c')
-rw-r--r-- | src/lib/libcrypto/idea/i_ofb64.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/idea/i_ofb64.c b/src/lib/libcrypto/idea/i_ofb64.c index cfef8ea95f..376dad9f6d 100644 --- a/src/lib/libcrypto/idea/i_ofb64.c +++ b/src/lib/libcrypto/idea/i_ofb64.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: i_ofb64.c,v 1.2 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: i_ofb64.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 | * |
@@ -67,11 +67,11 @@ void idea_ofb64_encrypt(const unsigned char *in, unsigned char *out, | |||
67 | long length, IDEA_KEY_SCHEDULE *schedule, | 67 | long length, IDEA_KEY_SCHEDULE *schedule, |
68 | unsigned char *ivec, int *num) | 68 | unsigned char *ivec, int *num) |
69 | { | 69 | { |
70 | register unsigned long v0,v1,t; | 70 | unsigned long v0,v1,t; |
71 | register int n= *num; | 71 | int n= *num; |
72 | register long l=length; | 72 | long l=length; |
73 | unsigned char d[8]; | 73 | unsigned char d[8]; |
74 | register char *dp; | 74 | char *dp; |
75 | unsigned long ti[2]; | 75 | unsigned long ti[2]; |
76 | unsigned char *iv; | 76 | unsigned char *iv; |
77 | int save=0; | 77 | int save=0; |