Add missing rsa_security_bit() handler to the RSA-PSS ASN1_METHOD
authortb <tb@openbsd.org>
Fri, 19 May 2023 17:31:20 +0000 (17:31 +0000)
committertb <tb@openbsd.org>
Fri, 19 May 2023 17:31:20 +0000 (17:31 +0000)
Prompted by a report by Steffen Ullrich on libressl@openbsd.org

ok jsing

lib/libcrypto/rsa/rsa_ameth.c

index 9b91dd1..1cf2069 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsa_ameth.c,v 1.28 2023/03/25 09:12:35 tb Exp $ */
+/* $OpenBSD: rsa_ameth.c,v 1.29 2023/05/19 17:31:20 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2006.
  */
@@ -1152,6 +1152,7 @@ const EVP_PKEY_ASN1_METHOD rsa_pss_asn1_meth = {
 
        .pkey_size = int_rsa_size,
        .pkey_bits = rsa_bits,
+       .pkey_security_bits = rsa_security_bits,
 
        .sig_print = rsa_sig_print,