Lines Matching defs:rsa
78 #include <openssl/rsa.h>
530 RSA *rsa;
532 rsa = EVP_PKEY_get0_RSA(pubkey);
534 rsa = pubkey->pkey.rsa;
546 RSA_get0_key(rsa, &n, &e, NULL);
550 BIO_printf(mem, "%d", rsa->n ? BN_num_bits(rsa->n) : 0);
553 print_pubkey_BN(rsa, n, i);
554 print_pubkey_BN(rsa, e, i);
1631 RSA *rsa = EVP_PKEY_get1_RSA(priv_key);
1632 if(RSA_flags(rsa) & RSA_METHOD_FLAG_NO_CHECK)
1634 RSA_free(rsa); /* Decrement reference count */