Turn audio into a shareable video. forked from nypublicradio/audiogram

rsa.h 22KB

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