signature: Clamp PSS salt len to MD len
authorClemens Lang <cllang@redhat.com>
Fri, 18 Nov 2022 11:35:33 +0000 (12:35 +0100)
committerTomas Mraz <tomas@openssl.org>
Thu, 8 Dec 2022 10:02:52 +0000 (11:02 +0100)
commit6c73ca4a2f4ea71f4a880670624e7b2fdb6f32da
tree774202724fd1eb4cff06d536c5320bac94dc41b6
parent5a3bbe1712435d577bbc5ec046906979e8471d8b
signature: Clamp PSS salt len to MD len

FIPS 186-4 section 5 "The RSA Digital Signature Algorithm", subsection
5.5 "PKCS #1" says: "For RSASSA-PSS […] the length (in bytes) of the
salt (sLen) shall satisfy 0 <= sLen <= hLen, where hLen is the length of
the hash function output block (in bytes)."

Introduce a new option RSA_PSS_SALTLEN_AUTO_DIGEST_MAX and make it the
default. The new value will behave like RSA_PSS_SALTLEN_AUTO, but will
not use more than the digest length when signing, so that FIPS 186-4 is
not violated. This value has two advantages when compared with
RSA_PSS_SALTLEN_DIGEST: (1) It will continue to do auto-detection when
verifying signatures for maximum compatibility, where
RSA_PSS_SALTLEN_DIGEST would fail for other digest sizes. (2) It will
work for combinations where the maximum salt length is smaller than the
digest size, which typically happens with large digest sizes (e.g.,
SHA-512) and small RSA keys.

J.-S. Coron shows in "Optimal Security Proofs for PSS and Other
Signature Schemes. Advances in Cryptology – Eurocrypt 2002, volume 2332
of Lecture Notes in Computer Science, pp. 272 – 287. Springer Verlag,
2002." that longer salts than the output size of modern hash functions
do not increase security: "For example,for an application in which at
most one billion signatures will be generated, k0 = 30 bits of random
salt are actually sufficient to guarantee the same level of security as
RSA, and taking a larger salt does not increase the security level."

Signed-off-by: Clemens Lang <cllang@redhat.com>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19724)
13 files changed:
CHANGES.md
crypto/rsa/rsa_ameth.c
crypto/rsa/rsa_pss.c
doc/man3/EVP_PKEY_CTX_ctrl.pod
doc/man7/EVP_SIGNATURE-RSA.pod
include/openssl/core_names.h
include/openssl/rsa.h
providers/implementations/signature/rsa_sig.c
test/recipes/15-test_rsapss.t
test/recipes/25-test_req.t
test/recipes/80-test_cms.t
test/smime-certs/mksmime-certs.sh
test/smime-certs/smrsa1024.pem [new file with mode: 0644]