summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bf/bf_ofb64.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bf/bf_ofb64.c')
-rw-r--r--src/lib/libcrypto/bf/bf_ofb64.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/bf/bf_ofb64.c b/src/lib/libcrypto/bf/bf_ofb64.c
index 6d9a55cb07..9e33162aab 100644
--- a/src/lib/libcrypto/bf/bf_ofb64.c
+++ b/src/lib/libcrypto/bf/bf_ofb64.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bf_ofb64.c,v 1.4 2014/06/12 15:49:28 deraadt Exp $ */ 1/* $OpenBSD: bf_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 *
@@ -66,11 +66,11 @@
66void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length, 66void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length,
67 const BF_KEY *schedule, unsigned char *ivec, int *num) 67 const BF_KEY *schedule, unsigned char *ivec, int *num)
68 { 68 {
69 register BF_LONG v0,v1,t; 69 BF_LONG v0,v1,t;
70 register int n= *num; 70 int n= *num;
71 register long l=length; 71 long l=length;
72 unsigned char d[8]; 72 unsigned char d[8];
73 register char *dp; 73 char *dp;
74 BF_LONG ti[2]; 74 BF_LONG ti[2];
75 unsigned char *iv; 75 unsigned char *iv;
76 int save=0; 76 int save=0;