aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/rsa
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-06-02 18:28:27 +0000
committerAndy Polyakov <appro@openssl.org>2005-06-02 18:28:27 +0000
commitc7aaf3918d1055cbf2bc89c7868f159a60c0ea6d (patch)
tree7d72978e927ac1e9e7a2b478e8bf56551ae18b9b /crypto/rsa
parentd51204f1b1fed976bc3f5f37a466973b9f851328 (diff)
downloadopenssl-c7aaf3918d1055cbf2bc89c7868f159a60c0ea6d.tar.gz
Fix inconsistensy between 8 and HEAD.
Diffstat (limited to 'crypto/rsa')
-rw-r--r--crypto/rsa/rsa.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/rsa/rsa.h b/crypto/rsa/rsa.h
index de053e20c1..a1ca34760c 100644
--- a/crypto/rsa/rsa.h
+++ b/crypto/rsa/rsa.h
@@ -320,6 +320,12 @@ int RSA_padding_check_X931(unsigned char *to,int tlen,
const unsigned char *f,int fl,int rsa_len);
int RSA_X931_hash_id(int nid);
+int RSA_verify_PKCS1_PSS(RSA *rsa, const unsigned char *mHash,
+ const EVP_MD *Hash, const unsigned char *EM, int sLen);
+int RSA_padding_add_PKCS1_PSS(RSA *rsa, unsigned char *EM,
+ const unsigned char *mHash,
+ const EVP_MD *Hash, int sLen);
+
int RSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);
int RSA_set_ex_data(RSA *r,int idx,void *arg);