summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des/cfb64enc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/des/cfb64enc.c')
-rw-r--r--src/lib/libcrypto/des/cfb64enc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/des/cfb64enc.c b/src/lib/libcrypto/des/cfb64enc.c
index 86d626beb3..6c8f99e841 100644
--- a/src/lib/libcrypto/des/cfb64enc.c
+++ b/src/lib/libcrypto/des/cfb64enc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cfb64enc.c,v 1.5 2014/06/12 15:49:28 deraadt Exp $ */ 1/* $OpenBSD: cfb64enc.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 *
@@ -67,9 +67,9 @@ void DES_cfb64_encrypt(const unsigned char *in, unsigned char *out,
67 long length, DES_key_schedule *schedule, 67 long length, DES_key_schedule *schedule,
68 DES_cblock *ivec, int *num, int enc) 68 DES_cblock *ivec, int *num, int enc)
69 { 69 {
70 register DES_LONG v0,v1; 70 DES_LONG v0,v1;
71 register long l=length; 71 long l=length;
72 register int n= *num; 72 int n= *num;
73 DES_LONG ti[2]; 73 DES_LONG ti[2];
74 unsigned char *iv,c,cc; 74 unsigned char *iv,c,cc;
75 75