summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bf/bf_ecb.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/bf/bf_ecb.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/libcrypto/bf/bf_ecb.c b/src/lib/libcrypto/bf/bf_ecb.c
index 3421b5f514..2430455c39 100644
--- a/src/lib/libcrypto/bf/bf_ecb.c
+++ b/src/lib/libcrypto/bf/bf_ecb.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bf_ecb.c,v 1.7 2022/11/11 12:08:29 jsing Exp $ */ 1/* $OpenBSD: bf_ecb.c,v 1.8 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,10 +57,12 @@
57 */ 57 */
58 58
59#include <openssl/blowfish.h> 59#include <openssl/blowfish.h>
60#include "bf_locl.h"
61#include <openssl/opensslv.h> 60#include <openssl/opensslv.h>
62 61
63/* Blowfish as implemented from 'Blowfish: Springer-Verlag paper' 62#include "bf_locl.h"
63
64/*
65 * Blowfish as implemented from 'Blowfish: Springer-Verlag paper'
64 * (From LECTURE NOTES IN COMPUTER SCIENCE 809, FAST SOFTWARE ENCRYPTION, 66 * (From LECTURE NOTES IN COMPUTER SCIENCE 809, FAST SOFTWARE ENCRYPTION,
65 * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993) 67 * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993)
66 */ 68 */
@@ -97,4 +99,3 @@ BF_ecb_encrypt(const unsigned char *in, unsigned char *out,
97 l2n(l, out); 99 l2n(l, out);
98 l = d[0] = d[1] = 0; 100 l = d[0] = d[1] = 0;
99} 101}
100