• Home
  • Raw
  • Download

Lines Matching defs:rsa

88   RSA *rsa = OPENSSL_malloc(sizeof(RSA));  in RSA_new_method()  local
121 void RSA_free(RSA *rsa) { in RSA_free()
163 int RSA_up_ref(RSA *rsa) { in RSA_up_ref()
168 unsigned RSA_bits(const RSA *rsa) { return BN_num_bits(rsa->n); } in RSA_bits()
170 const BIGNUM *RSA_get0_n(const RSA *rsa) { return rsa->n; } in RSA_get0_n()
172 const BIGNUM *RSA_get0_e(const RSA *rsa) { return rsa->e; } in RSA_get0_e()
174 const BIGNUM *RSA_get0_d(const RSA *rsa) { return rsa->d; } in RSA_get0_d()
176 const BIGNUM *RSA_get0_p(const RSA *rsa) { return rsa->p; } in RSA_get0_p()
178 const BIGNUM *RSA_get0_q(const RSA *rsa) { return rsa->q; } in RSA_get0_q()
180 const BIGNUM *RSA_get0_dmp1(const RSA *rsa) { return rsa->dmp1; } in RSA_get0_dmp1()
182 const BIGNUM *RSA_get0_dmq1(const RSA *rsa) { return rsa->dmq1; } in RSA_get0_dmq1()
184 const BIGNUM *RSA_get0_iqmp(const RSA *rsa) { return rsa->iqmp; } in RSA_get0_iqmp()
186 void RSA_get0_key(const RSA *rsa, const BIGNUM **out_n, const BIGNUM **out_e, in RSA_get0_key()
199 void RSA_get0_factors(const RSA *rsa, const BIGNUM **out_p, in RSA_get0_factors()
209 void RSA_get0_crt_params(const RSA *rsa, const BIGNUM **out_dmp1, in RSA_get0_crt_params()
222 int RSA_set0_key(RSA *rsa, BIGNUM *n, BIGNUM *e, BIGNUM *d) { in RSA_set0_key()
244 int RSA_set0_factors(RSA *rsa, BIGNUM *p, BIGNUM *q) { in RSA_set0_factors()
262 int RSA_set0_crt_params(RSA *rsa, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp) { in RSA_set0_crt_params()
285 int RSA_public_encrypt(size_t flen, const uint8_t *from, uint8_t *to, RSA *rsa, in RSA_public_encrypt()
300 int RSA_sign_raw(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out, in RSA_sign_raw()
309 int RSA_private_encrypt(size_t flen, const uint8_t *from, uint8_t *to, RSA *rsa, in RSA_private_encrypt()
324 int RSA_decrypt(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out, in RSA_decrypt()
333 int RSA_private_decrypt(size_t flen, const uint8_t *from, uint8_t *to, RSA *rsa, in RSA_private_decrypt()
348 int RSA_public_decrypt(size_t flen, const uint8_t *from, uint8_t *to, RSA *rsa, in RSA_public_decrypt()
363 unsigned RSA_size(const RSA *rsa) { in RSA_size()
371 int RSA_is_opaque(const RSA *rsa) { in RSA_is_opaque()
385 int RSA_set_ex_data(RSA *rsa, int idx, void *arg) { in RSA_set_ex_data()
389 void *RSA_get_ex_data(const RSA *rsa, int idx) { in RSA_get_ex_data()
521 unsigned *out_len, RSA *rsa) { in RSA_sign()
550 int RSA_sign_pss_mgf1(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out, in RSA_sign_pss_mgf1()
574 const uint8_t *sig, size_t sig_len, RSA *rsa) { in RSA_verify()
625 int RSA_verify_pss_mgf1(RSA *rsa, const uint8_t *msg, size_t msg_len, in RSA_verify_pss_mgf1()
905 int RSA_private_transform(RSA *rsa, uint8_t *out, const uint8_t *in, in RSA_private_transform()
914 int RSA_flags(const RSA *rsa) { return rsa->flags; } in RSA_flags()
916 int RSA_blinding_on(RSA *rsa, BN_CTX *ctx) { in RSA_blinding_on()