HomeSort by relevance Sort by last modified time
    Searched refs:pktmp (Results 1 - 4 of 4) sorted by null

  /external/boringssl/src/crypto/pem/
pem_all.c 156 EVP_PKEY *pktmp; local
157 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
158 return pkey_get_rsa(pktmp, rsa);
165 EVP_PKEY *pktmp; local
166 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u);
167 return pkey_get_rsa(pktmp, rsa);
200 EVP_PKEY *pktmp; local
201 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
202 return pkey_get_dsa(pktmp, dsa); /* will free pktmp */
212 EVP_PKEY *pktmp; local
240 EVP_PKEY *pktmp; local
253 EVP_PKEY *pktmp; local
    [all...]
  /external/boringssl/src/crypto/x509/
x_pubkey.c 191 EVP_PKEY *pktmp; local
195 pktmp = X509_PUBKEY_get(xpk);
197 if (!pktmp)
201 *a = pktmp;
203 return pktmp;
245 EVP_PKEY *pktmp; local
249 pktmp = EVP_PKEY_new();
250 if (!pktmp) {
254 EVP_PKEY_set1_RSA(pktmp, (RSA *)a);
255 ret = i2d_PUBKEY(pktmp, pp)
284 EVP_PKEY *pktmp; local
323 EVP_PKEY *pktmp; local
    [all...]
x509_req.c 74 EVP_PKEY *pktmp; local
93 pktmp = X509_get_pubkey(x);
94 if (pktmp == NULL)
96 i = X509_REQ_set_pubkey(ret, pktmp);
97 EVP_PKEY_free(pktmp);
  /external/curl/lib/vtls/
openssl.c 622 EVP_PKEY *pktmp = X509_get_pubkey(x509); local
623 EVP_PKEY_copy_parameters(pktmp, SSL_get_privatekey(ssl));
624 EVP_PKEY_free(pktmp);
    [all...]

Completed in 344 milliseconds