Home | History | Annotate | Download | only in apps

Lines Matching defs:rsa

11  * apply to all code found in this distribution, be it the RC4, RSA,
139 #include <openssl/rsa.h>
1009 RSA *rsa;
1010 rsa = d2i_RSAPublicKey_bio(key, NULL);
1011 if (rsa)
1015 EVP_PKEY_set1_RSA(pkey, rsa);
1016 RSA_free(rsa);
1023 RSA *rsa;
1024 rsa = PEM_read_bio_RSAPublicKey(key, NULL,
1026 if (rsa)
1030 EVP_PKEY_set1_RSA(pkey, rsa);
1031 RSA_free(rsa);
1069 RSA *rsa;
1094 rsa = d2i_RSA_NET(NULL,&p,(long)size,NULL,
1096 if (rsa == NULL)
1099 EVP_PKEY_set1_RSA(pkey, rsa);