From 03047e7b7f64b054fa85d101e7097af5daf7a865 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 2 Jan 2020 14:25:27 +0000 Subject: Deprecate Low Level Blowfish APIs Applications should instead use the higher level EVP APIs, e.g. EVP_Encrypt*() and EVP_Decrypt*(). Reviewed-by: Richard Levitte Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/10740) --- doc/man3/BF_encrypt.pod | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'doc/man3/BF_encrypt.pod') diff --git a/doc/man3/BF_encrypt.pod b/doc/man3/BF_encrypt.pod index 069b5ebc97..ab4c156d2e 100644 --- a/doc/man3/BF_encrypt.pod +++ b/doc/man3/BF_encrypt.pod @@ -9,6 +9,10 @@ BF_cfb64_encrypt, BF_ofb64_encrypt, BF_options - Blowfish encryption #include +Deprecated since OpenSSL 3.0, can be hidden entirely by defining +B with a suitable version value, see +L: + void BF_set_key(BF_KEY *key, int len, const unsigned char *data); void BF_ecb_encrypt(const unsigned char *in, unsigned char *out, @@ -29,6 +33,10 @@ BF_cfb64_encrypt, BF_ofb64_encrypt, BF_options - Blowfish encryption =head1 DESCRIPTION +All of the functions described on this page are deprecated. Applications should +instead use L, L and +L or the equivalently named decrypt functions. + This library implements the Blowfish cipher, which was invented and described by Counterpane (see http://www.counterpane.com/blowfish.html ). @@ -107,6 +115,10 @@ functions directly. L, L +=head1 HISTORY + +All of these functions were deprecated in OpenSSL 3.0. + =head1 COPYRIGHT Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. -- cgit v1.2.3