summaryrefslogtreecommitdiffstats
path: root/crypto/rsa/rsa_lib.c
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2020-03-15 17:38:00 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-03-15 17:38:00 +1000
commitd16d0b71a9a31bf61289518a8ae523131f293faf (patch)
tree52a0e2f46fef419b4d7a662e4b659bd1022da74f /crypto/rsa/rsa_lib.c
parent629b507eaedde95c7b6195a1f210df56395efb8b (diff)
Add RSA sign to the fips provider
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11199)
Diffstat (limited to 'crypto/rsa/rsa_lib.c')
-rw-r--r--crypto/rsa/rsa_lib.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/rsa/rsa_lib.c b/crypto/rsa/rsa_lib.c
index 0a0d3e84db..08365708a6 100644
--- a/crypto/rsa/rsa_lib.c
+++ b/crypto/rsa/rsa_lib.c
@@ -635,13 +635,10 @@ const BIGNUM *RSA_get0_iqmp(const RSA *r)
return r->iqmp;
}
-/* TODO(3.0): Temporary until we move PSS support into the FIPS module */
-#ifndef FIPS_MODE
const RSA_PSS_PARAMS *RSA_get0_pss_params(const RSA *r)
{
return r->pss;
}
-#endif
void RSA_clear_flags(RSA *r, int flags)
{