Home | History | Annotate | Download | only in evp

Lines Matching refs:pkey

79       !RSA_marshal_public_key(&key_bitstring, key->pkey.rsa) ||
112 return BN_cmp(b->pkey.rsa->n, a->pkey.rsa->n) == 0 &&
113 BN_cmp(b->pkey.rsa->e, a->pkey.rsa->e) == 0;
125 !RSA_marshal_private_key(&private_key, key->pkey.rsa) ||
155 static int rsa_opaque(const EVP_PKEY *pkey) {
156 return RSA_is_opaque(pkey->pkey.rsa);
159 static int int_rsa_size(const EVP_PKEY *pkey) {
160 return RSA_size(pkey->pkey.rsa);
163 static int rsa_bits(const EVP_PKEY *pkey) {
164 return RSA_bits(pkey->pkey.rsa);
167 static void int_rsa_free(EVP_PKEY *pkey) { RSA_free(pkey->pkey.rsa); }