summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bf/bf_cbc.c
diff options
context:
space:
mode:
authorjsg <>2014-10-28 07:35:59 +0000
committerjsg <>2014-10-28 07:35:59 +0000
commit0505bd63c15c82aead21cde52afbf6c41421d140 (patch)
treed82fff0ac0ba35d28951ab9d9e5225251c23ecda /src/lib/libcrypto/bf/bf_cbc.c
parent794dcf073b734d649d7b5d30916d7a3ae919b66e (diff)
downloadopenbsd-0505bd63c15c82aead21cde52afbf6c41421d140.tar.gz
openbsd-0505bd63c15c82aead21cde52afbf6c41421d140.tar.bz2
openbsd-0505bd63c15c82aead21cde52afbf6c41421d140.zip
deregister; no binary change
ok jsing@ miod@
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)