Lines Matching refs:RSA
24 #include <openssl/rsa.h>
55 static inline const RSA *
57 return pkey->type == EVP_PKEY_RSA ? pkey->pkey.rsa : NULL;
70 RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d);
73 RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q);
76 RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp);
79 RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e,
83 RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q);
86 RSA_get0_crt_params(const RSA *r, const BIGNUM **dmp1, const BIGNUM **dmq1,
90 RSA_test_flags(const RSA *r, int flags);