Commit 6bad7fb0ae for openssl.org
commit 6bad7fb0ae999393f9bdff5ae7f7c59321f967d3
Author: Eugene Syromiatnikov <esyr@openssl.org>
Date: Mon May 11 12:06:23 2026 +0200
doc/man7/EVP_CIPHER-DES.pod: remove trailing whitespace
Remove trailing whitespace to address the following find-doc-nits
warnings:
WARNING: line containing nothing but whitespace in paragraph at line 65 in file doc/man7/EVP_CIPHER-DES.pod
WARNING: line containing nothing but whitespace in paragraph at line 69 in file doc/man7/EVP_CIPHER-DES.pod
Fixes: 5ff19a7297ea "docs: Document required output buffer length in EVP_CIPHER-DES"
Signed-off-by: Eugene Syromiatnikov <esyr@openssl.org>
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Paul Yang <paulyang.inf@gmail.com>
MergeDate: Thu May 14 09:24:31 2026
(Merged from https://github.com/openssl/openssl/pull/31141)
diff --git a/doc/man7/EVP_CIPHER-DES.pod b/doc/man7/EVP_CIPHER-DES.pod
index cf294cdc31..30cf56b60f 100644
--- a/doc/man7/EVP_CIPHER-DES.pod
+++ b/doc/man7/EVP_CIPHER-DES.pod
@@ -62,11 +62,11 @@ This implementation supports the parameters described in
L<EVP_EncryptInit(3)/PARAMETERS> including "encrypt-check" and "fips-indicator".
=head1 NOTES
-
+
The DES3-WRAP implementation does not support streaming. That means to obtain
correct results there can be only one L<EVP_EncryptUpdate(3)> or
L<EVP_DecryptUpdate(3)> call after the initialization of the context.
-
+
When wrapping (encrypting) with DES3-WRAP, the output buffer must be at least
I<input_length> + 16 bytes. The extra 16 bytes accommodate an 8-byte IV and an
8-byte integrity check value (ICV) prepended and appended by the algorithm.