rsa.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  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_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. const BIGNUM *RSA_get0_n(const RSA *d);
  179. const BIGNUM *RSA_get0_e(const RSA *d);
  180. const BIGNUM *RSA_get0_d(const RSA *d);
  181. const BIGNUM *RSA_get0_p(const RSA *d);
  182. const BIGNUM *RSA_get0_q(const RSA *d);
  183. const BIGNUM *RSA_get0_dmp1(const RSA *r);
  184. const BIGNUM *RSA_get0_dmq1(const RSA *r);
  185. const BIGNUM *RSA_get0_iqmp(const RSA *r);
  186. const RSA_PSS_PARAMS *RSA_get0_pss_params(const RSA *r);
  187. void RSA_clear_flags(RSA *r, int flags);
  188. int RSA_test_flags(const RSA *r, int flags);
  189. void RSA_set_flags(RSA *r, int flags);
  190. int RSA_get_version(RSA *r);
  191. ENGINE *RSA_get0_engine(const RSA *r);
  192. /* Deprecated version */
  193. DEPRECATEDIN_0_9_8(RSA *RSA_generate_key(int bits, unsigned long e, void
  194. (*callback) (int, int, void *),
  195. void *cb_arg))
  196. /* New version */
  197. int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
  198. /* Multi-prime version */
  199. int RSA_generate_multi_prime_key(RSA *rsa, int bits, int primes,
  200. BIGNUM *e, BN_GENCB *cb);
  201. int RSA_X931_derive_ex(RSA *rsa, BIGNUM *p1, BIGNUM *p2, BIGNUM *q1,
  202. BIGNUM *q2, const BIGNUM *Xp1, const BIGNUM *Xp2,
  203. const BIGNUM *Xp, const BIGNUM *Xq1, const BIGNUM *Xq2,
  204. const BIGNUM *Xq, const BIGNUM *e, BN_GENCB *cb);
  205. int RSA_X931_generate_key_ex(RSA *rsa, int bits, const BIGNUM *e,
  206. BN_GENCB *cb);
  207. int RSA_check_key(const RSA *);
  208. int RSA_check_key_ex(const RSA *, BN_GENCB *cb);
  209. /* next 4 return -1 on error */
  210. int RSA_public_encrypt(int flen, const unsigned char *from,
  211. unsigned char *to, RSA *rsa, int padding);
  212. int RSA_private_encrypt(int flen, const unsigned char *from,
  213. unsigned char *to, RSA *rsa, int padding);
  214. int RSA_public_decrypt(int flen, const unsigned char *from,
  215. unsigned char *to, RSA *rsa, int padding);
  216. int RSA_private_decrypt(int flen, const unsigned char *from,
  217. unsigned char *to, RSA *rsa, int padding);
  218. void RSA_free(RSA *r);
  219. /* "up" the RSA object's reference count */
  220. int RSA_up_ref(RSA *r);
  221. int RSA_flags(const RSA *r);
  222. void RSA_set_default_method(const RSA_METHOD *meth);
  223. const RSA_METHOD *RSA_get_default_method(void);
  224. const RSA_METHOD *RSA_null_method(void);
  225. const RSA_METHOD *RSA_get_method(const RSA *rsa);
  226. int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
  227. /* these are the actual RSA functions */
  228. const RSA_METHOD *RSA_PKCS1_OpenSSL(void);
  229. int RSA_pkey_ctx_ctrl(EVP_PKEY_CTX *ctx, int optype, int cmd, int p1, void *p2);
  230. DECLARE_ASN1_ENCODE_FUNCTIONS_const(RSA, RSAPublicKey)
  231. DECLARE_ASN1_ENCODE_FUNCTIONS_const(RSA, RSAPrivateKey)
  232. struct rsa_pss_params_st {
  233. X509_ALGOR *hashAlgorithm;
  234. X509_ALGOR *maskGenAlgorithm;
  235. ASN1_INTEGER *saltLength;
  236. ASN1_INTEGER *trailerField;
  237. /* Decoded hash algorithm from maskGenAlgorithm */
  238. X509_ALGOR *maskHash;
  239. };
  240. DECLARE_ASN1_FUNCTIONS(RSA_PSS_PARAMS)
  241. typedef struct rsa_oaep_params_st {
  242. X509_ALGOR *hashFunc;
  243. X509_ALGOR *maskGenFunc;
  244. X509_ALGOR *pSourceFunc;
  245. /* Decoded hash algorithm from maskGenFunc */
  246. X509_ALGOR *maskHash;
  247. } RSA_OAEP_PARAMS;
  248. DECLARE_ASN1_FUNCTIONS(RSA_OAEP_PARAMS)
  249. # ifndef OPENSSL_NO_STDIO
  250. int RSA_print_fp(FILE *fp, const RSA *r, int offset);
  251. # endif
  252. int RSA_print(BIO *bp, const RSA *r, int offset);
  253. /*
  254. * The following 2 functions sign and verify a X509_SIG ASN1 object inside
  255. * PKCS#1 padded RSA encryption
  256. */
  257. int RSA_sign(int type, const unsigned char *m, unsigned int m_length,
  258. unsigned char *sigret, unsigned int *siglen, RSA *rsa);
  259. int RSA_verify(int type, const unsigned char *m, unsigned int m_length,
  260. const unsigned char *sigbuf, unsigned int siglen, RSA *rsa);
  261. /*
  262. * The following 2 function sign and verify a ASN1_OCTET_STRING object inside
  263. * PKCS#1 padded RSA encryption
  264. */
  265. int RSA_sign_ASN1_OCTET_STRING(int type,
  266. const unsigned char *m, unsigned int m_length,
  267. unsigned char *sigret, unsigned int *siglen,
  268. RSA *rsa);
  269. int RSA_verify_ASN1_OCTET_STRING(int type, const unsigned char *m,
  270. unsigned int m_length, unsigned char *sigbuf,
  271. unsigned int siglen, RSA *rsa);
  272. int RSA_blinding_on(RSA *rsa, BN_CTX *ctx);
  273. void RSA_blinding_off(RSA *rsa);
  274. BN_BLINDING *RSA_setup_blinding(RSA *rsa, BN_CTX *ctx);
  275. int RSA_padding_add_PKCS1_type_1(unsigned char *to, int tlen,
  276. const unsigned char *f, int fl);
  277. int RSA_padding_check_PKCS1_type_1(unsigned char *to, int tlen,
  278. const unsigned char *f, int fl,
  279. int rsa_len);
  280. int RSA_padding_add_PKCS1_type_2(unsigned char *to, int tlen,
  281. const unsigned char *f, int fl);
  282. int RSA_padding_check_PKCS1_type_2(unsigned char *to, int tlen,
  283. const unsigned char *f, int fl,
  284. int rsa_len);
  285. int PKCS1_MGF1(unsigned char *mask, long len, const unsigned char *seed,
  286. long seedlen, const EVP_MD *dgst);
  287. int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen,
  288. const unsigned char *f, int fl,
  289. const unsigned char *p, int pl);
  290. int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen,
  291. const unsigned char *f, int fl, int rsa_len,
  292. const unsigned char *p, int pl);
  293. int RSA_padding_add_PKCS1_OAEP_mgf1(unsigned char *to, int tlen,
  294. const unsigned char *from, int flen,
  295. const unsigned char *param, int plen,
  296. const EVP_MD *md, const EVP_MD *mgf1md);
  297. int RSA_padding_check_PKCS1_OAEP_mgf1(unsigned char *to, int tlen,
  298. const unsigned char *from, int flen,
  299. int num, const unsigned char *param,
  300. int plen, const EVP_MD *md,
  301. const EVP_MD *mgf1md);
  302. int RSA_padding_add_SSLv23(unsigned char *to, int tlen,
  303. const unsigned char *f, int fl);
  304. int RSA_padding_check_SSLv23(unsigned char *to, int tlen,
  305. const unsigned char *f, int fl, int rsa_len);
  306. int RSA_padding_add_none(unsigned char *to, int tlen, const unsigned char *f,
  307. int fl);
  308. int RSA_padding_check_none(unsigned char *to, int tlen,
  309. const unsigned char *f, int fl, int rsa_len);
  310. int RSA_padding_add_X931(unsigned char *to, int tlen, const unsigned char *f,
  311. int fl);
  312. int RSA_padding_check_X931(unsigned char *to, int tlen,
  313. const unsigned char *f, int fl, int rsa_len);
  314. int RSA_X931_hash_id(int nid);
  315. int RSA_verify_PKCS1_PSS(RSA *rsa, const unsigned char *mHash,
  316. const EVP_MD *Hash, const unsigned char *EM,
  317. int sLen);
  318. int RSA_padding_add_PKCS1_PSS(RSA *rsa, unsigned char *EM,
  319. const unsigned char *mHash, const EVP_MD *Hash,
  320. int sLen);
  321. int RSA_verify_PKCS1_PSS_mgf1(RSA *rsa, const unsigned char *mHash,
  322. const EVP_MD *Hash, const EVP_MD *mgf1Hash,
  323. const unsigned char *EM, int sLen);
  324. int RSA_padding_add_PKCS1_PSS_mgf1(RSA *rsa, unsigned char *EM,
  325. const unsigned char *mHash,
  326. const EVP_MD *Hash, const EVP_MD *mgf1Hash,
  327. int sLen);
  328. #define RSA_get_ex_new_index(l, p, newf, dupf, freef) \
  329. CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_RSA, l, p, newf, dupf, freef)
  330. int RSA_set_ex_data(RSA *r, int idx, void *arg);
  331. void *RSA_get_ex_data(const RSA *r, int idx);
  332. RSA *RSAPublicKey_dup(RSA *rsa);
  333. RSA *RSAPrivateKey_dup(RSA *rsa);
  334. /*
  335. * If this flag is set the RSA method is FIPS compliant and can be used in
  336. * FIPS mode. This is set in the validated module method. If an application
  337. * sets this flag in its own methods it is its responsibility to ensure the
  338. * result is compliant.
  339. */
  340. # define RSA_FLAG_FIPS_METHOD 0x0400
  341. /*
  342. * If this flag is set the operations normally disabled in FIPS mode are
  343. * permitted it is then the applications responsibility to ensure that the
  344. * usage is compliant.
  345. */
  346. # define RSA_FLAG_NON_FIPS_ALLOW 0x0400
  347. /*
  348. * Application has decided PRNG is good enough to generate a key: don't
  349. * check.
  350. */
  351. # define RSA_FLAG_CHECKED 0x0800
  352. RSA_METHOD *RSA_meth_new(const char *name, int flags);
  353. void RSA_meth_free(RSA_METHOD *meth);
  354. RSA_METHOD *RSA_meth_dup(const RSA_METHOD *meth);
  355. const char *RSA_meth_get0_name(const RSA_METHOD *meth);
  356. int RSA_meth_set1_name(RSA_METHOD *meth, const char *name);
  357. int RSA_meth_get_flags(const RSA_METHOD *meth);
  358. int RSA_meth_set_flags(RSA_METHOD *meth, int flags);
  359. void *RSA_meth_get0_app_data(const RSA_METHOD *meth);
  360. int RSA_meth_set0_app_data(RSA_METHOD *meth, void *app_data);
  361. int (*RSA_meth_get_pub_enc(const RSA_METHOD *meth))
  362. (int flen, const unsigned char *from,
  363. unsigned char *to, RSA *rsa, int padding);
  364. int RSA_meth_set_pub_enc(RSA_METHOD *rsa,
  365. int (*pub_enc) (int flen, const unsigned char *from,
  366. unsigned char *to, RSA *rsa,
  367. int padding));
  368. int (*RSA_meth_get_pub_dec(const RSA_METHOD *meth))
  369. (int flen, const unsigned char *from,
  370. unsigned char *to, RSA *rsa, int padding);
  371. int RSA_meth_set_pub_dec(RSA_METHOD *rsa,
  372. int (*pub_dec) (int flen, const unsigned char *from,
  373. unsigned char *to, RSA *rsa,
  374. int padding));
  375. int (*RSA_meth_get_priv_enc(const RSA_METHOD *meth))
  376. (int flen, const unsigned char *from,
  377. unsigned char *to, RSA *rsa, int padding);
  378. int RSA_meth_set_priv_enc(RSA_METHOD *rsa,
  379. int (*priv_enc) (int flen, const unsigned char *from,
  380. unsigned char *to, RSA *rsa,
  381. int padding));
  382. int (*RSA_meth_get_priv_dec(const RSA_METHOD *meth))
  383. (int flen, const unsigned char *from,
  384. unsigned char *to, RSA *rsa, int padding);
  385. int RSA_meth_set_priv_dec(RSA_METHOD *rsa,
  386. int (*priv_dec) (int flen, const unsigned char *from,
  387. unsigned char *to, RSA *rsa,
  388. int padding));
  389. int (*RSA_meth_get_mod_exp(const RSA_METHOD *meth))
  390. (BIGNUM *r0, const BIGNUM *i, RSA *rsa, BN_CTX *ctx);
  391. int RSA_meth_set_mod_exp(RSA_METHOD *rsa,
  392. int (*mod_exp) (BIGNUM *r0, const BIGNUM *i, RSA *rsa,
  393. BN_CTX *ctx));
  394. int (*RSA_meth_get_bn_mod_exp(const RSA_METHOD *meth))
  395. (BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
  396. const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
  397. int RSA_meth_set_bn_mod_exp(RSA_METHOD *rsa,
  398. int (*bn_mod_exp) (BIGNUM *r,
  399. const BIGNUM *a,
  400. const BIGNUM *p,
  401. const BIGNUM *m,
  402. BN_CTX *ctx,
  403. BN_MONT_CTX *m_ctx));
  404. int (*RSA_meth_get_init(const RSA_METHOD *meth)) (RSA *rsa);
  405. int RSA_meth_set_init(RSA_METHOD *rsa, int (*init) (RSA *rsa));
  406. int (*RSA_meth_get_finish(const RSA_METHOD *meth)) (RSA *rsa);
  407. int RSA_meth_set_finish(RSA_METHOD *rsa, int (*finish) (RSA *rsa));
  408. int (*RSA_meth_get_sign(const RSA_METHOD *meth))
  409. (int type,
  410. const unsigned char *m, unsigned int m_length,
  411. unsigned char *sigret, unsigned int *siglen,
  412. const RSA *rsa);
  413. int RSA_meth_set_sign(RSA_METHOD *rsa,
  414. int (*sign) (int type, const unsigned char *m,
  415. unsigned int m_length,
  416. unsigned char *sigret, unsigned int *siglen,
  417. const RSA *rsa));
  418. int (*RSA_meth_get_verify(const RSA_METHOD *meth))
  419. (int dtype, const unsigned char *m,
  420. unsigned int m_length, const unsigned char *sigbuf,
  421. unsigned int siglen, const RSA *rsa);
  422. int RSA_meth_set_verify(RSA_METHOD *rsa,
  423. int (*verify) (int dtype, const unsigned char *m,
  424. unsigned int m_length,
  425. const unsigned char *sigbuf,
  426. unsigned int siglen, const RSA *rsa));
  427. int (*RSA_meth_get_keygen(const RSA_METHOD *meth))
  428. (RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
  429. int RSA_meth_set_keygen(RSA_METHOD *rsa,
  430. int (*keygen) (RSA *rsa, int bits, BIGNUM *e,
  431. BN_GENCB *cb));
  432. int (*RSA_meth_get_multi_prime_keygen(const RSA_METHOD *meth))
  433. (RSA *rsa, int bits, int primes, BIGNUM *e, BN_GENCB *cb);
  434. int RSA_meth_set_multi_prime_keygen(RSA_METHOD *meth,
  435. int (*keygen) (RSA *rsa, int bits,
  436. int primes, BIGNUM *e,
  437. BN_GENCB *cb));
  438. # ifdef __cplusplus
  439. }
  440. # endif
  441. # endif
  442. #endif