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 159 EVP_PKEY *pktmp; local
160 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
161 return pkey_get_rsa(pktmp, rsa);
169 EVP_PKEY *pktmp; local
170 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u);
171 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 */
215 EVP_PKEY *pktmp; local
245 EVP_PKEY *pktmp; local
260 EVP_PKEY *pktmp; local
    [all...]
  /external/boringssl/src/crypto/x509/
x_pubkey.c 208 EVP_PKEY *pktmp; local
211 pktmp = X509_PUBKEY_get(xpk);
213 if(!pktmp) return NULL;
217 *a = pktmp;
219 return pktmp;
259 EVP_PKEY *pktmp; local
262 pktmp = EVP_PKEY_new();
263 if (!pktmp)
268 EVP_PKEY_set1_RSA(pktmp, (RSA*) a);
269 ret = i2d_PUBKEY(pktmp, pp)
298 EVP_PKEY *pktmp; local
336 EVP_PKEY *pktmp; local
    [all...]
x509_req.c 75 EVP_PKEY *pktmp; local
94 pktmp = X509_get_pubkey(x);
95 if (pktmp == NULL)
97 i=X509_REQ_set_pubkey(ret,pktmp);
98 EVP_PKEY_free(pktmp);
  /external/curl/lib/vtls/
openssl.c 629 EVP_PKEY *pktmp = X509_get_pubkey(x509); local
630 EVP_PKEY_copy_parameters(pktmp, SSL_get_privatekey(ssl));
631 EVP_PKEY_free(pktmp);
    [all...]

Completed in 198 milliseconds