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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bf/bf_cbc.c b/src/lib/libcrypto/bf/bf_cbc.c
index 58e85b63c8..b13ea12961 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.6 2022/11/11 12:08:29 jsing Exp $ */ 1/* $OpenBSD: bf_cbc.c,v 1.7 2022/11/11 12:18:25 jsing 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 *
@@ -57,6 +57,7 @@
57 */ 57 */
58 58
59#include <openssl/blowfish.h> 59#include <openssl/blowfish.h>
60
60#include "bf_locl.h" 61#include "bf_locl.h"
61 62
62void 63void
@@ -134,4 +135,3 @@ BF_cbc_encrypt(const unsigned char *in, unsigned char *out, long length,
134 tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0; 135 tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0;
135 tin[0] = tin[1] = 0; 136 tin[0] = tin[1] = 0;
136} 137}
137