summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des/ofb64enc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/des/ofb64enc.c')
-rw-r--r--src/lib/libcrypto/des/ofb64enc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libcrypto/des/ofb64enc.c b/src/lib/libcrypto/des/ofb64enc.c
index 2e547c29dd..de1a26b99f 100644
--- a/src/lib/libcrypto/des/ofb64enc.c
+++ b/src/lib/libcrypto/des/ofb64enc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ofb64enc.c,v 1.5 2014/06/12 15:49:28 deraadt Exp $ */ 1/* $OpenBSD: ofb64enc.c,v 1.6 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 *
@@ -62,15 +62,15 @@
62 * used. The extra state information to record how much of the 62 * used. The extra state information to record how much of the
63 * 64bit block we have used is contained in *num; 63 * 64bit block we have used is contained in *num;
64 */ 64 */
65void DES_ofb64_encrypt(register const unsigned char *in, 65void DES_ofb64_encrypt(const unsigned char *in,
66 register unsigned char *out, long length, 66 unsigned char *out, long length,
67 DES_key_schedule *schedule, DES_cblock *ivec, int *num) 67 DES_key_schedule *schedule, DES_cblock *ivec, int *num)
68 { 68 {
69 register DES_LONG v0,v1,t; 69 DES_LONG v0,v1,t;
70 register int n= *num; 70 int n= *num;
71 register long l=length; 71 long l=length;
72 DES_cblock d; 72 DES_cblock d;
73 register unsigned char *dp; 73 unsigned char *dp;
74 DES_LONG ti[2]; 74 DES_LONG ti[2];
75 unsigned char *iv; 75 unsigned char *iv;
76 int save=0; 76 int save=0;