Home | History | Annotate | Download | only in vtls

Lines Matching refs:rsa

66 #include <openssl/rsa.h>
833 /* If RSA is used, don't check the private key if its flags indicate
843 RSA *rsa = EVP_PKEY_get1_RSA(priv_key);
844 if(RSA_flags(rsa) & RSA_METHOD_FLAG_NO_CHECK)
846 RSA_free(rsa); /* Decrement reference count */
2849 RSA *rsa;
2851 rsa = EVP_PKEY_get0_RSA(pubkey);
2853 rsa = pubkey->pkey.rsa;
2861 RSA_get0_key(rsa, &n, &e, NULL);
2863 push_certinfo("RSA Public Key", i);
2864 print_pubkey_BN(rsa, n, i);
2865 print_pubkey_BN(rsa, e, i);
2868 BIO_printf(mem, "%d", BN_num_bits(rsa->n));
2869 push_certinfo("RSA Public Key", i);
2870 print_pubkey_BN(rsa, n, i);
2871 print_pubkey_BN(rsa, e, i);