diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2023-09-10 11:20:53 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2023-09-10 11:20:53 +0000 |
commit | d00ee8bb58c6ed3dde2bc4f2255dde27b0d23657 (patch) | |
tree | 09e001dcaf3ef9d1c7b5d9133735b1190e822e02 | |
parent | 2864e55305c036d5c7b1ba5148993ebf2c55a9ed (diff) |
Mark EVP_ENCODE_LENGTH() and EVP_DECODE_LENGTH() as intentionally
undocumented because they do not describe properties of the Base64
encoding but add arbitrary constant lengths, hence being implementation
details of BIO_f_base64(3). Besides, they are practically unused
outside evp/bio_b64.c.
-rw-r--r-- | lib/libcrypto/man/BIO_f_base64.3 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/libcrypto/man/BIO_f_base64.3 b/lib/libcrypto/man/BIO_f_base64.3 index 6054c7c7388..bbb68cf7414 100644 --- a/lib/libcrypto/man/BIO_f_base64.3 +++ b/lib/libcrypto/man/BIO_f_base64.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: BIO_f_base64.3,v 1.13 2023/04/11 16:58:43 schwarze Exp $ +.\" $OpenBSD: BIO_f_base64.3,v 1.14 2023/09/10 11:20:52 schwarze Exp $ .\" OpenSSL fc1d88f0 Wed Jul 2 22:42:40 2014 -0400 .\" .\" This file was written by Dr. Stephen Henson <steve@openssl.org>. @@ -49,11 +49,15 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED .\" OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: April 11 2023 $ +.Dd $Mdocdate: September 10 2023 $ .Dt BIO_F_BASE64 3 .Os .Sh NAME .Nm BIO_f_base64 +.\" .Nm EVP_ENCODE_LENGTH and +.\" .Nm EVP_DECODE_LENGTH are intentionally undocumented +.\" because they are internal implemention details of BIO_f_base64(3) +.\" and practically unused outside evp/bio_b64.c. .Nd base64 BIO filter .Sh SYNOPSIS .In openssl/bio.h |