]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix typo in SSL_get_shared_sigalgs docs
authorSasha Romijn <github@mxsasha.eu>
Wed, 11 Dec 2024 13:31:12 +0000 (14:31 +0100)
committerTomas Mraz <tomas@openssl.org>
Fri, 13 Dec 2024 10:39:03 +0000 (11:39 +0100)
psighash -> psignhash

CLA: trivial

Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26151)

(cherry picked from commit 1b3b5a019a8aab7e92f1a56123880e67fd22e1b5)

doc/man3/SSL_get_shared_sigalgs.pod

index c18114cdf47200f20fa850f2532dc7aaf5ae9dd5..cb9ce025002fed99eee61d1dd8cc556b762930cf 100644 (file)
@@ -64,7 +64,7 @@ ordered according to configuration and peer preferences.
 The raw values correspond to the on the wire form as defined by RFC5246 et al.
 The NIDs are OpenSSL equivalents. For example if the peer sent sha256(4) and
 rsa(1) then B<*rhash> would be 4, B<*rsign> 1, B<*phash> NID_sha256, B<*psig>
-NID_rsaEncryption and B<*psighash> NID_sha256WithRSAEncryption.
+NID_rsaEncryption and B<*psignhash> NID_sha256WithRSAEncryption.
 
 If a signature algorithm is not recognised the corresponding NIDs
 will be set to B<NID_undef>. This may be because the value is not supported,