summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bf
diff options
context:
space:
mode:
authortb <>2023-07-31 05:04:06 +0000
committertb <>2023-07-31 05:04:06 +0000
commitdc6989fcceeb8a299b2364670053a568ea83d2ff (patch)
treede34abc6e618c5cff9f84c79d2cebc3f90d1c75b /src/lib/libcrypto/bf
parentac284d0a8a14d1a793bb65dfb2d65c8a87966bb0 (diff)
downloadopenbsd-dc6989fcceeb8a299b2364670053a568ea83d2ff.tar.gz
openbsd-dc6989fcceeb8a299b2364670053a568ea83d2ff.tar.bz2
openbsd-dc6989fcceeb8a299b2364670053a568ea83d2ff.zip
Remove more *_options() stuff
The public symbols were removed. Some prototypes and in the case of DES even the implementation remained. ok jsing
Diffstat (limited to 'src/lib/libcrypto/bf')
-rw-r--r--src/lib/libcrypto/bf/blowfish.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bf/blowfish.h b/src/lib/libcrypto/bf/blowfish.h
index 592bd83146..b434e70cbb 100644
--- a/src/lib/libcrypto/bf/blowfish.h
+++ b/src/lib/libcrypto/bf/blowfish.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: blowfish.h,v 1.16 2022/11/11 12:08:29 jsing Exp $ */ 1/* $OpenBSD: blowfish.h,v 1.17 2023/07/31 05:04:06 tb 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 *
@@ -102,7 +102,6 @@ void BF_cfb64_encrypt(const unsigned char *in, unsigned char *out, long length,
102 const BF_KEY *schedule, unsigned char *ivec, int *num, int enc); 102 const BF_KEY *schedule, unsigned char *ivec, int *num, int enc);
103void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length, 103void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length,
104 const BF_KEY *schedule, unsigned char *ivec, int *num); 104 const BF_KEY *schedule, unsigned char *ivec, int *num);
105const char *BF_options(void);
106 105
107#ifdef __cplusplus 106#ifdef __cplusplus
108} 107}