summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bf/bf_cbc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bf/bf_cbc.c')
-rw-r--r--src/lib/libcrypto/bf/bf_cbc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/bf/bf_cbc.c b/src/lib/libcrypto/bf/bf_cbc.c
index bf8d2c5c48..6f45f9ae4c 100644
--- a/src/lib/libcrypto/bf/bf_cbc.c
+++ b/src/lib/libcrypto/bf/bf_cbc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bf_cbc.c,v 1.4 2014/06/12 15:49:28 deraadt Exp $ */ 1/* $OpenBSD: bf_cbc.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 *
@@ -62,9 +62,9 @@
62void BF_cbc_encrypt(const unsigned char *in, unsigned char *out, long length, 62void BF_cbc_encrypt(const unsigned char *in, unsigned char *out, long length,
63 const BF_KEY *schedule, unsigned char *ivec, int encrypt) 63 const BF_KEY *schedule, unsigned char *ivec, int encrypt)
64 { 64 {
65 register BF_LONG tin0,tin1; 65 BF_LONG tin0,tin1;
66 register BF_LONG tout0,tout1,xor0,xor1; 66 BF_LONG tout0,tout1,xor0,xor1;
67 register long l=length; 67 long l=length;
68 BF_LONG tin[2]; 68 BF_LONG tin[2];
69 69
70 if (encrypt) 70 if (encrypt)