]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/rsa/rsa_lib.c
PROV SERIALIZER: add support for writing RSA keys
[thirdparty/openssl.git] / crypto / rsa / rsa_lib.c
index 71e4b783061abeadd27675a264864337ac4bb236..bf47540b45850bb40182d40c81e9d01d079a11cb 100644 (file)
@@ -584,6 +584,11 @@ const BIGNUM *RSA_get0_iqmp(const RSA *r)
     return r->iqmp;
 }
 
+const RSA_PSS_PARAMS *RSA_get0_pss_params(const RSA *r)
+{
+    return r->pss;
+}
+
 void RSA_clear_flags(RSA *r, int flags)
 {
     r->flags &= ~flags;