summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rc2/rc2ofb64.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/rc2/rc2ofb64.c')
-rw-r--r--src/lib/libcrypto/rc2/rc2ofb64.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/rc2/rc2ofb64.c b/src/lib/libcrypto/rc2/rc2ofb64.c
index 58c765d456..c47b413739 100644
--- a/src/lib/libcrypto/rc2/rc2ofb64.c
+++ b/src/lib/libcrypto/rc2/rc2ofb64.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rc2ofb64.c,v 1.4 2014/06/12 15:49:30 deraadt Exp $ */ 1/* $OpenBSD: rc2ofb64.c,v 1.5 2014/10/28 07:35:59 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 RC2_ofb64_encrypt(const unsigned char *in, unsigned char *out,
67 long length, RC2_KEY *schedule, unsigned char *ivec, 67 long length, RC2_KEY *schedule, unsigned char *ivec,
68 int *num) 68 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;