Blame SOURCES/openssl-pkcs11-0.4.10-set-rsa-fips-method-flag.patch

a5d914
--- a/src/p11_rsa.c	2019-04-03 21:58:18.000000000 +0200
a5d914
+++ b/src/p11_rsa.c	2019-11-28 15:46:18.898258545 +0100
a5d914
@@ -478,7 +478,7 @@
a5d914
 		if (!ops)
a5d914
 			return NULL;
a5d914
 		RSA_meth_set1_name(ops, "libp11 RSA method");
a5d914
-		RSA_meth_set_flags(ops, 0);
a5d914
+		RSA_meth_set_flags(ops, RSA_FLAG_FIPS_METHOD);
a5d914
 		RSA_meth_set_priv_enc(ops, pkcs11_rsa_priv_enc_method);
a5d914
 		RSA_meth_set_priv_dec(ops, pkcs11_rsa_priv_dec_method);
a5d914
 		RSA_meth_set_finish(ops, pkcs11_rsa_free_method);