rsa.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. /*
  2. * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef HEADER_RSA_H
  10. # define HEADER_RSA_H
  11. # include <openssl/opensslconf.h>
  12. # ifndef OPENSSL_NO_RSA
  13. # include <openssl/asn1.h>
  14. # include <openssl/bio.h>
  15. # include <openssl/crypto.h>
  16. # include <openssl/ossl_typ.h>
  17. # if OPENSSL_API_COMPAT < 0x10100000L
  18. # include <openssl/bn.h>
  19. # endif
  20. # include <openssl/rsaerr.h>
  21. # ifdef __cplusplus
  22. extern "C" {
  23. # endif
  24. /* The types RSA and RSA_METHOD are defined in ossl_typ.h */
  25. # ifndef OPENSSL_RSA_MAX_MODULUS_BITS
  26. # define OPENSSL_RSA_MAX_MODULUS_BITS 16384
  27. # endif
  28. # define OPENSSL_RSA_FIPS_MIN_MODULUS_BITS 1024
  29. # ifndef OPENSSL_RSA_SMALL_MODULUS_BITS
  30. # define OPENSSL_RSA_SMALL_MODULUS_BITS 3072
  31. # endif
  32. # ifndef OPENSSL_RSA_MAX_PUBEXP_BITS
  33. /* exponent limit enforced for "large" modulus only */
  34. # define OPENSSL_RSA_MAX_PUBEXP_BITS 64
  35. # endif
  36. # define RSA_3 0x3L
  37. # define RSA_F4 0x10001L
  38. /* based on RFC 8017 appendix A.1.2 */
  39. # define RSA_ASN1_VERSION_DEFAULT 0
  40. # define RSA_ASN1_VERSION_MULTI 1
  41. # define RSA_DEFAULT_PRIME_NUM 2
  42. # define RSA_METHOD_FLAG_NO_CHECK 0x0001/* don't check pub/private
  43. * match */
  44. # define RSA_FLAG_CACHE_PUBLIC 0x0002
  45. # define RSA_FLAG_CACHE_PRIVATE 0x0004
  46. # define RSA_FLAG_BLINDING 0x0008
  47. # define RSA_FLAG_THREAD_SAFE 0x0010
  48. /*
  49. * This flag means the private key operations will be handled by rsa_mod_exp
  50. * and that they do not depend on the private key components being present:
  51. * for example a key stored in external hardware. Without this flag
  52. * bn_mod_exp gets called when private key components are absent.
  53. */
  54. # define RSA_FLAG_EXT_PKEY 0x0020
  55. /*
  56. * new with 0.9.6j and 0.9.7b; the built-in
  57. * RSA implementation now uses blinding by
  58. * default (ignoring RSA_FLAG_BLINDING),
  59. * but other engines might not need it
  60. */
  61. # define RSA_FLAG_NO_BLINDING 0x0080
  62. # if OPENSSL_API_COMPAT < 0x10100000L
  63. /*
  64. * Does nothing. Previously this switched off constant time behaviour.
  65. */
  66. # define RSA_FLAG_NO_CONSTTIME 0x0000
  67. # endif
  68. # if OPENSSL_API_COMPAT < 0x00908000L
  69. /* deprecated name for the flag*/
  70. /*
  71. * new with 0.9.7h; the built-in RSA
  72. * implementation now uses constant time
  73. * modular exponentiation for secret exponents
  74. * by default. This flag causes the
  75. * faster variable sliding window method to
  76. * be used for all exponents.
  77. */
  78. # define RSA_FLAG_NO_EXP_CONSTTIME RSA_FLAG_NO_CONSTTIME
  79. # endif
  80. # define EVP_PKEY_CTX_set_rsa_padding(ctx, pad) \
  81. RSA_pkey_ctx_ctrl(ctx, -1, EVP_PKEY_CTRL_RSA_PADDING, pad, NULL)
  82. # define EVP_PKEY_CTX_get_rsa_padding(ctx, ppad) \
  83. RSA_pkey_ctx_ctrl(ctx, -1, EVP_PKEY_CTRL_GET_RSA_PADDING, 0, ppad)
  84. # define EVP_PKEY_CTX_set_rsa_pss_saltlen(ctx, len) \
  85. RSA_pkey_ctx_ctrl(ctx, (EVP_PKEY_OP_SIGN|EVP_PKEY_OP_VERIFY), \
  86. EVP_PKEY_CTRL_RSA_PSS_SALTLEN, len, NULL)
  87. /* Salt length matches digest */
  88. # define RSA_PSS_SALTLEN_DIGEST -1
  89. /* Verify only: auto detect salt length */
  90. # define RSA_PSS_SALTLEN_AUTO -2
  91. /* Set salt length to maximum possible */
  92. # define RSA_PSS_SALTLEN_MAX -3
  93. /* Old compatible max salt length for sign only */
  94. # define RSA_PSS_SALTLEN_MAX_SIGN -2
  95. # define EVP_PKEY_CTX_set_rsa_pss_keygen_saltlen(ctx, len) \
  96. EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA_PSS, EVP_PKEY_OP_KEYGEN, \
  97. EVP_PKEY_CTRL_RSA_PSS_SALTLEN, len, NULL)
  98. # define EVP_PKEY_CTX_get_rsa_pss_saltlen(ctx, plen) \
  99. RSA_pkey_ctx_ctrl(ctx, (EVP_PKEY_OP_SIGN|EVP_PKEY_OP_VERIFY), \
  100. EVP_PKEY_CTRL_GET_RSA_PSS_SALTLEN, 0, plen)
  101. # define EVP_PKEY_CTX_set_rsa_keygen_bits(ctx, bits) \
  102. RSA_pkey_ctx_ctrl(ctx, EVP_PKEY_OP_KEYGEN, \
  103. EVP_PKEY_CTRL_RSA_KEYGEN_BITS, bits, NULL)
  104. # define EVP_PKEY_CTX_set_rsa_keygen_pubexp(ctx, pubexp) \
  105. RSA_pkey_ctx_ctrl(ctx, EVP_PKEY_OP_KEYGEN, \
  106. EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp)
  107. # define EVP_PKEY_CTX_set_rsa_keygen_primes(ctx, primes) \
  108. RSA_pkey_ctx_ctrl(ctx, EVP_PKEY_OP_KEYGEN, \
  109. EVP_PKEY_CTRL_RSA_KEYGEN_PRIMES, primes, NULL)
  110. # define EVP_PKEY_CTX_set_rsa_mgf1_md(ctx, md) \
  111. RSA_pkey_ctx_ctrl(ctx, EVP_PKEY_OP_TYPE_SIG | EVP_PKEY_OP_TYPE_CRYPT, \
  112. EVP_PKEY_CTRL_RSA_MGF1_MD, 0, (void *)(md))
  113. # define EVP_PKEY_CTX_set_rsa_pss_keygen_mgf1_md(ctx, md) \
  114. EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA_PSS, EVP_PKEY_OP_KEYGEN, \
  115. EVP_PKEY_CTRL_RSA_MGF1_MD, 0, (void *)(md))
  116. # define EVP_PKEY_CTX_set_rsa_oaep_md(ctx, md) \
  117. EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT, \
  118. EVP_PKEY_CTRL_RSA_OAEP_MD, 0, (void *)(md))
  119. # define EVP_PKEY_CTX_get_rsa_mgf1_md(ctx, pmd) \
  120. RSA_pkey_ctx_ctrl(ctx, EVP_PKEY_OP_TYPE_SIG | EVP_PKEY_OP_TYPE_CRYPT, \
  121. EVP_PKEY_CTRL_GET_RSA_MGF1_MD, 0, (void *)(pmd))
  122. # define EVP_PKEY_CTX_get_rsa_oaep_md(ctx, pmd) \
  123. EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT, \
  124. EVP_PKEY_CTRL_GET_RSA_OAEP_MD, 0, (void *)(pmd))
  125. # define EVP_PKEY_CTX_set0_rsa_oaep_label(ctx, l, llen) \
  126. EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT, \
  127. EVP_PKEY_CTRL_RSA_OAEP_LABEL, llen, (void *)(l))
  128. # define EVP_PKEY_CTX_get0_rsa_oaep_label(ctx, l) \
  129. EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT, \
  130. EVP_PKEY_CTRL_GET_RSA_OAEP_LABEL, 0, (void *)(l))
  131. # define EVP_PKEY_CTX_set_rsa_pss_keygen_md(ctx, md) \
  132. EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA_PSS, \
  133. EVP_PKEY_OP_TYPE_KEYGEN, EVP_PKEY_CTRL_MD, \
  134. 0, (void *)(md))
  135. # define EVP_PKEY_CTRL_RSA_PADDING (EVP_PKEY_ALG_CTRL + 1)
  136. # define EVP_PKEY_CTRL_RSA_PSS_SALTLEN (EVP_PKEY_ALG_CTRL + 2)
  137. # define EVP_PKEY_CTRL_RSA_KEYGEN_BITS (EVP_PKEY_ALG_CTRL + 3)
  138. # define EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP (EVP_PKEY_ALG_CTRL + 4)
  139. # define EVP_PKEY_CTRL_RSA_MGF1_MD (EVP_PKEY_ALG_CTRL + 5)
  140. # define EVP_PKEY_CTRL_GET_RSA_PADDING (EVP_PKEY_ALG_CTRL + 6)
  141. # define EVP_PKEY_CTRL_GET_RSA_PSS_SALTLEN (EVP_PKEY_ALG_CTRL + 7)
  142. # define EVP_PKEY_CTRL_GET_RSA_MGF1_MD (EVP_PKEY_ALG_CTRL + 8)
  143. # define EVP_PKEY_CTRL_RSA_OAEP_MD (EVP_PKEY_ALG_CTRL + 9)
  144. # define EVP_PKEY_CTRL_RSA_OAEP_LABEL (EVP_PKEY_ALG_CTRL + 10)
  145. # define EVP_PKEY_CTRL_GET_RSA_OAEP_MD (EVP_PKEY_ALG_CTRL + 11)
  146. # define EVP_PKEY_CTRL_GET_RSA_OAEP_LABEL (EVP_PKEY_ALG_CTRL + 12)
  147. # define EVP_PKEY_CTRL_RSA_KEYGEN_PRIMES (EVP_PKEY_ALG_CTRL + 13)
  148. # define RSA_PKCS1_PADDING 1
  149. # define RSA_SSLV23_PADDING 2
  150. # define RSA_NO_PADDING 3
  151. # define RSA_PKCS1_OAEP_PADDING 4
  152. # define RSA_X931_PADDING 5
  153. /* EVP_PKEY_ only */
  154. # define RSA_PKCS1_PSS_PADDING 6
  155. # define RSA_PKCS1_PADDING_SIZE 11
  156. # define RSA_set_app_data(s,arg) RSA_set_ex_data(s,0,arg)
  157. # define RSA_get_app_data(s) RSA_get_ex_data(s,0)
  158. RSA *RSA_new(void);
  159. RSA *RSA_new_method(ENGINE *engine);
  160. int RSA_bits(const RSA *rsa);
  161. int RSA_size(const RSA *rsa);
  162. int RSA_security_bits(const RSA *rsa);
  163. int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d);
  164. int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q);
  165. int RSA_set0_crt_params(RSA *r,BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp);
  166. int RSA_set0_multi_prime_params(RSA *r, BIGNUM *primes[], BIGNUM *exps[],
  167. BIGNUM *coeffs[], int pnum);
  168. void RSA_get0_key(const RSA *r,
  169. const BIGNUM **n, const BIGNUM **e, const BIGNUM **d);
  170. void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q);
  171. int RSA_get_multi_prime_extra_count(const RSA *r);
  172. int RSA_get0_multi_prime_factors(const RSA *r, const BIGNUM *primes[]);
  173. void RSA_get0_crt_params(const RSA *r,
  174. const BIGNUM **dmp1, const BIGNUM **dmq1,
  175. const BIGNUM **iqmp);
  176. int RSA_get0_multi_prime_crt_params(const RSA *r, const BIGNUM *exps[],
  177. const BIGNUM *coeffs[]);
  178. void RSA_clear_flags(RSA *r, int flags);
  179. int RSA_test_flags(const RSA *r, int flags);
  180. void RSA_set_flags(RSA *r, int flags);
  181. int RSA_get_version(RSA *r);
  182. ENGINE *RSA_get0_engine(const RSA *r);
  183. /* Deprecated version */
  184. DEPRECATEDIN_0_9_8(RSA *RSA_generate_key(int bits, unsigned long e, void
  185. (*callback) (int, int, void *),
  186. void *cb_arg))
  187. /* New version */
  188. int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
  189. /* Multi-prime version */
  190. int RSA_generate_multi_prime_key(RSA *rsa, int bits, int primes,
  191. BIGNUM *e, BN_GENCB *cb);
  192. int RSA_X931_derive_ex(RSA *rsa, BIGNUM *p1, BIGNUM *p2, BIGNUM *q1,
  193. BIGNUM *q2, const BIGNUM *Xp1, const BIGNUM *Xp2,
  194. const BIGNUM *Xp, const BIGNUM *Xq1, const BIGNUM *Xq2,
  195. const BIGNUM *Xq, const BIGNUM *e, BN_GENCB *cb);
  196. int RSA_X931_generate_key_ex(RSA *rsa, int bits, const BIGNUM *e,
  197. BN_GENCB *cb);
  198. int RSA_check_key(const RSA *);
  199. int RSA_check_key_ex(const RSA *, BN_GENCB *cb);
  200. /* next 4 return -1 on error */
  201. int RSA_public_encrypt(int flen, const unsigned char *from,
  202. unsigned char *to, RSA *rsa, int padding);
  203. int RSA_private_encrypt(int flen, const unsigned char *from,
  204. unsigned char *to, RSA *rsa, int padding);
  205. int RSA_public_decrypt(int flen, const unsigned char *from,
  206. unsigned char *to, RSA *rsa, int padding);
  207. int RSA_private_decrypt(int flen, const unsigned char *from,
  208. unsigned char *to, RSA *rsa, int padding);
  209. void RSA_free(RSA *r);
  210. /* "up" the RSA object's reference count */
  211. int RSA_up_ref(RSA *r);
  212. int RSA_flags(const RSA *r);
  213. void RSA_set_default_method(const RSA_METHOD *meth);
  214. const RSA_METHOD *RSA_get_default_method(void);
  215. const RSA_METHOD *RSA_null_method(void);
  216. const RSA_METHOD *RSA_get_method(const RSA *rsa);
  217. int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
  218. /* these are the actual RSA functions */
  219. const RSA_METHOD *RSA_PKCS1_OpenSSL(void);
  220. int RSA_pkey_ctx_ctrl(EVP_PKEY_CTX *ctx, int optype, int cmd, int p1, void *p2);
  221. DECLARE_ASN1_ENCODE_FUNCTIONS_const(RSA, RSAPublicKey)
  222. DECLARE_ASN1_ENCODE_FUNCTIONS_const(RSA, RSAPrivateKey)
  223. typedef struct rsa_pss_params_st {
  224. X509_ALGOR *hashAlgorithm;
  225. X509_ALGOR *maskGenAlgorithm;
  226. ASN1_INTEGER *saltLength;
  227. ASN1_INTEGER *trailerField;
  228. /* Decoded hash algorithm from maskGenAlgorithm */
  229. X509_ALGOR *maskHash;
  230. } RSA_PSS_PARAMS;
  231. DECLARE_ASN1_FUNCTIONS(RSA_PSS_PARAMS)
  232. typedef struct rsa_oaep_params_st {
  233. X509_ALGOR *hashFunc;
  234. X509_ALGOR *maskGenFunc;
  235. X509_ALGOR *pSourceFunc;
  236. /* Decoded hash algorithm from maskGenFunc */
  237. X509_ALGOR *maskHash;
  238. } RSA_OAEP_PARAMS;
  239. DECLARE_ASN1_FUNCTIONS(RSA_OAEP_PARAMS)
  240. # ifndef OPENSSL_NO_STDIO
  241. int RSA_print_fp(FILE *fp, const RSA *r, int offset);
  242. # endif
  243. int RSA_print(BIO *bp, const RSA *r, int offset);
  244. /*
  245. * The following 2 functions sign and verify a X509_SIG ASN1 object inside
  246. * PKCS#1 padded RSA encryption
  247. */
  248. int RSA_sign(int type, const unsigned char *m, unsigned int m_length,
  249. unsigned char *sigret, unsigned int *siglen, RSA *rsa);
  250. int RSA_verify(int type, const unsigned char *m, unsigned int m_length,
  251. const unsigned char *sigbuf, unsigned int siglen, RSA *rsa);
  252. /*
  253. * The following 2 function sign and verify a ASN1_OCTET_STRING object inside
  254. * PKCS#1 padded RSA encryption
  255. */
  256. int RSA_sign_ASN1_OCTET_STRING(int type,
  257. const unsigned char *m, unsigned int m_length,
  258. unsigned char *sigret, unsigned int *siglen,
  259. RSA *rsa);
  260. int RSA_verify_ASN1_OCTET_STRING(int type, const unsigned char *m,
  261. unsigned int m_length, unsigned char *sigbuf,
  262. unsigned int siglen, RSA *rsa);
  263. int RSA_blinding_on(RSA *rsa, BN_CTX *ctx);
  264. void RSA_blinding_off(RSA *rsa);
  265. BN_BLINDING *RSA_setup_blinding(RSA *rsa, BN_CTX *ctx);
  266. int RSA_padding_add_PKCS1_type_1(unsigned char *to, int tlen,
  267. const unsigned char *f, int fl);
  268. int RSA_padding_check_PKCS1_type_1(unsigned char *to, int tlen,
  269. const unsigned char *f, int fl,
  270. int rsa_len);
  271. int RSA_padding_add_PKCS1_type_2(unsigned char *to, int tlen,
  272. const unsigned char *f, int fl);
  273. int RSA_padding_check_PKCS1_type_2(unsigned char *to, int tlen,
  274. const unsigned char *f, int fl,
  275. int rsa_len);
  276. int PKCS1_MGF1(unsigned char *mask, long len, const unsigned char *seed,
  277. long seedlen, const EVP_MD *dgst);
  278. int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen,
  279. const unsigned char *f, int fl,
  280. const unsigned char *p, int pl);
  281. int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen,
  282. const unsigned char *f, int fl, int rsa_len,
  283. const unsigned char *p, int pl);
  284. int RSA_padding_add_PKCS1_OAEP_mgf1(unsigned char *to, int tlen,
  285. const unsigned char *from, int flen,
  286. const unsigned char *param, int plen,
  287. const EVP_MD *md, const EVP_MD *mgf1md);
  288. int RSA_padding_check_PKCS1_OAEP_mgf1(unsigned char *to, int tlen,
  289. const unsigned char *from, int flen,
  290. int num, const unsigned char *param,
  291. int plen, const EVP_MD *md,
  292. const EVP_MD *mgf1md);
  293. int RSA_padding_add_SSLv23(unsigned char *to, int tlen,
  294. const unsigned char *f, int fl);
  295. int RSA_padding_check_SSLv23(unsigned char *to, int tlen,
  296. const unsigned char *f, int fl, int rsa_len);
  297. int RSA_padding_add_none(unsigned char *to, int tlen, const unsigned char *f,
  298. int fl);
  299. int RSA_padding_check_none(unsigned char *to, int tlen,
  300. const unsigned char *f, int fl, int rsa_len);
  301. int RSA_padding_add_X931(unsigned char *to, int tlen, const unsigned char *f,
  302. int fl);
  303. int RSA_padding_check_X931(unsigned char *to, int tlen,
  304. const unsigned char *f, int fl, int rsa_len);
  305. int RSA_X931_hash_id(int nid);
  306. int RSA_verify_PKCS1_PSS(RSA *rsa, const unsigned char *mHash,
  307. const EVP_MD *Hash, const unsigned char *EM,
  308. int sLen);
  309. int RSA_padding_add_PKCS1_PSS(RSA *rsa, unsigned char *EM,
  310. const unsigned char *mHash, const EVP_MD *Hash,
  311. int sLen);
  312. int RSA_verify_PKCS1_PSS_mgf1(RSA *rsa, const unsigned char *mHash,
  313. const EVP_MD *Hash, const EVP_MD *mgf1Hash,
  314. const unsigned char *EM, int sLen);
  315. int RSA_padding_add_PKCS1_PSS_mgf1(RSA *rsa, unsigned char *EM,
  316. const unsigned char *mHash,
  317. const EVP_MD *Hash, const EVP_MD *mgf1Hash,
  318. int sLen);
  319. #define RSA_get_ex_new_index(l, p, newf, dupf, freef) \
  320. CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_RSA, l, p, newf, dupf, freef)
  321. int RSA_set_ex_data(RSA *r, int idx, void *arg);
  322. void *RSA_get_ex_data(const RSA *r, int idx);
  323. RSA *RSAPublicKey_dup(RSA *rsa);
  324. RSA *RSAPrivateKey_dup(RSA *rsa);
  325. /*
  326. * If this flag is set the RSA method is FIPS compliant and can be used in
  327. * FIPS mode. This is set in the validated module method. If an application
  328. * sets this flag in its own methods it is its responsibility to ensure the
  329. * result is compliant.
  330. */
  331. # define RSA_FLAG_FIPS_METHOD 0x0400
  332. /*
  333. * If this flag is set the operations normally disabled in FIPS mode are
  334. * permitted it is then the applications responsibility to ensure that the
  335. * usage is compliant.
  336. */
  337. # define RSA_FLAG_NON_FIPS_ALLOW 0x0400
  338. /*
  339. * Application has decided PRNG is good enough to generate a key: don't
  340. * check.
  341. */
  342. # define RSA_FLAG_CHECKED 0x0800
  343. RSA_METHOD *RSA_meth_new(const char *name, int flags);
  344. void RSA_meth_free(RSA_METHOD *meth);
  345. RSA_METHOD *RSA_meth_dup(const RSA_METHOD *meth);
  346. const char *RSA_meth_get0_name(const RSA_METHOD *meth);
  347. int RSA_meth_set1_name(RSA_METHOD *meth, const char *name);
  348. int RSA_meth_get_flags(RSA_METHOD *meth);
  349. int RSA_meth_set_flags(RSA_METHOD *meth, int flags);
  350. void *RSA_meth_get0_app_data(const RSA_METHOD *meth);
  351. int RSA_meth_set0_app_data(RSA_METHOD *meth, void *app_data);
  352. int (*RSA_meth_get_pub_enc(const RSA_METHOD *meth))
  353. (int flen, const unsigned char *from,
  354. unsigned char *to, RSA *rsa, int padding);
  355. int RSA_meth_set_pub_enc(RSA_METHOD *rsa,
  356. int (*pub_enc) (int flen, const unsigned char *from,
  357. unsigned char *to, RSA *rsa,
  358. int padding));
  359. int (*RSA_meth_get_pub_dec(const RSA_METHOD *meth))
  360. (int flen, const unsigned char *from,
  361. unsigned char *to, RSA *rsa, int padding);
  362. int RSA_meth_set_pub_dec(RSA_METHOD *rsa,
  363. int (*pub_dec) (int flen, const unsigned char *from,
  364. unsigned char *to, RSA *rsa,
  365. int padding));
  366. int (*RSA_meth_get_priv_enc(const RSA_METHOD *meth))
  367. (int flen, const unsigned char *from,
  368. unsigned char *to, RSA *rsa, int padding);
  369. int RSA_meth_set_priv_enc(RSA_METHOD *rsa,
  370. int (*priv_enc) (int flen, const unsigned char *from,
  371. unsigned char *to, RSA *rsa,
  372. int padding));
  373. int (*RSA_meth_get_priv_dec(const RSA_METHOD *meth))
  374. (int flen, const unsigned char *from,
  375. unsigned char *to, RSA *rsa, int padding);
  376. int RSA_meth_set_priv_dec(RSA_METHOD *rsa,
  377. int (*priv_dec) (int flen, const unsigned char *from,
  378. unsigned char *to, RSA *rsa,
  379. int padding));
  380. int (*RSA_meth_get_mod_exp(const RSA_METHOD *meth))
  381. (BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx);
  382. int RSA_meth_set_mod_exp(RSA_METHOD *rsa,
  383. int (*mod_exp) (BIGNUM *r0, const BIGNUM *I, RSA *rsa,
  384. BN_CTX *ctx));
  385. int (*RSA_meth_get_bn_mod_exp(const RSA_METHOD *meth))
  386. (BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
  387. const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
  388. int RSA_meth_set_bn_mod_exp(RSA_METHOD *rsa,
  389. int (*bn_mod_exp) (BIGNUM *r,
  390. const BIGNUM *a,
  391. const BIGNUM *p,
  392. const BIGNUM *m,
  393. BN_CTX *ctx,
  394. BN_MONT_CTX *m_ctx));
  395. int (*RSA_meth_get_init(const RSA_METHOD *meth)) (RSA *rsa);
  396. int RSA_meth_set_init(RSA_METHOD *rsa, int (*init) (RSA *rsa));
  397. int (*RSA_meth_get_finish(const RSA_METHOD *meth)) (RSA *rsa);
  398. int RSA_meth_set_finish(RSA_METHOD *rsa, int (*finish) (RSA *rsa));
  399. int (*RSA_meth_get_sign(const RSA_METHOD *meth))
  400. (int type,
  401. const unsigned char *m, unsigned int m_length,
  402. unsigned char *sigret, unsigned int *siglen,
  403. const RSA *rsa);
  404. int RSA_meth_set_sign(RSA_METHOD *rsa,
  405. int (*sign) (int type, const unsigned char *m,
  406. unsigned int m_length,
  407. unsigned char *sigret, unsigned int *siglen,
  408. const RSA *rsa));
  409. int (*RSA_meth_get_verify(const RSA_METHOD *meth))
  410. (int dtype, const unsigned char *m,
  411. unsigned int m_length, const unsigned char *sigbuf,
  412. unsigned int siglen, const RSA *rsa);
  413. int RSA_meth_set_verify(RSA_METHOD *rsa,
  414. int (*verify) (int dtype, const unsigned char *m,
  415. unsigned int m_length,
  416. const unsigned char *sigbuf,
  417. unsigned int siglen, const RSA *rsa));
  418. int (*RSA_meth_get_keygen(const RSA_METHOD *meth))
  419. (RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
  420. int RSA_meth_set_keygen(RSA_METHOD *rsa,
  421. int (*keygen) (RSA *rsa, int bits, BIGNUM *e,
  422. BN_GENCB *cb));
  423. int (*RSA_meth_get_multi_prime_keygen(const RSA_METHOD *meth))
  424. (RSA *rsa, int bits, int primes, BIGNUM *e, BN_GENCB *cb);
  425. int RSA_meth_set_multi_prime_keygen(RSA_METHOD *meth,
  426. int (*keygen) (RSA *rsa, int bits,
  427. int primes, BIGNUM *e,
  428. BN_GENCB *cb));
  429. # ifdef __cplusplus
  430. }
  431. # endif
  432. # endif
  433. #endif