Searched defs:pktmp (Results 1 - 6 of 6) sorted by relevance

/external/openssl/crypto/pem/
H A Dpem_all.c179 EVP_PKEY *pktmp; local
180 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
181 return pkey_get_rsa(pktmp, rsa);
189 EVP_PKEY *pktmp; local
190 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u);
191 return pkey_get_rsa(pktmp, rsa);
221 EVP_PKEY *pktmp; local
222 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
223 return pkey_get_dsa(pktmp, dsa); /* will free pktmp */
234 EVP_PKEY *pktmp; local
265 EVP_PKEY *pktmp; local
281 EVP_PKEY *pktmp; local
[all...]
/external/openssl/crypto/x509/
H A Dx509_req.c75 EVP_PKEY *pktmp; local
94 pktmp = X509_get_pubkey(x);
95 i=X509_REQ_set_pubkey(ret,pktmp);
96 EVP_PKEY_free(pktmp);
/external/openssl/ssl/
H A Dssl_rsa.c195 EVP_PKEY *pktmp; local
196 pktmp = X509_get_pubkey(c->pkeys[i].x509);
197 EVP_PKEY_copy_parameters(pktmp,pkey);
198 EVP_PKEY_free(pktmp);
/external/openssl/apps/
H A Dx509.c1258 EVP_PKEY *pktmp; local
1260 pktmp = X509_get_pubkey(x);
1261 EVP_PKEY_copy_parameters(pktmp,pkey);
1262 EVP_PKEY_save_parameters(pktmp,1);
1263 EVP_PKEY_free(pktmp);
H A Dca.c1584 EVP_PKEY *pktmp=NULL; local
1611 if ((pktmp=X509_REQ_get_pubkey(req)) == NULL)
1616 i=X509_REQ_verify(req,pktmp);
1617 EVP_PKEY_free(pktmp);
1654 EVP_PKEY *pktmp=NULL; local
1664 if ((pktmp=X509_get_pubkey(req)) == NULL)
1669 i=X509_verify(req,pktmp);
1670 EVP_PKEY_free(pktmp);
1716 EVP_PKEY *pktmp; local
2050 pktmp
2279 EVP_PKEY *pktmp=NULL; local
[all...]
H A Ds_client.c2037 EVP_PKEY *pktmp; local
2038 pktmp = X509_get_pubkey(peer);
2040 EVP_PKEY_bits(pktmp));
2041 EVP_PKEY_free(pktmp);

Completed in 141 milliseconds