diff options
Diffstat (limited to 'src/lib/libcrypto/cast/c_ofb64.c')
-rw-r--r-- | src/lib/libcrypto/cast/c_ofb64.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/cast/c_ofb64.c b/src/lib/libcrypto/cast/c_ofb64.c index dc5eebf56b..611425a668 100644 --- a/src/lib/libcrypto/cast/c_ofb64.c +++ b/src/lib/libcrypto/cast/c_ofb64.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: c_ofb64.c,v 1.4 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: c_ofb64.c,v 1.5 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 CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out, | |||
67 | long length, const CAST_KEY *schedule, unsigned char *ivec, | 67 | long length, const CAST_KEY *schedule, unsigned char *ivec, |
68 | int *num) | 68 | int *num) |
69 | { | 69 | { |
70 | register CAST_LONG v0,v1,t; | 70 | CAST_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 | CAST_LONG ti[2]; | 75 | CAST_LONG ti[2]; |
76 | unsigned char *iv; | 76 | unsigned char *iv; |
77 | int save=0; | 77 | int save=0; |