HomeSort by relevance Sort by last modified time
    Searched defs:ameth (Results 1 - 11 of 11) sorted by null

  /external/openssl/crypto/pem/
pem_pkey.c 124 const EVP_PKEY_ASN1_METHOD *ameth; local
125 ameth = EVP_PKEY_asn1_find_str(NULL, nm, slen);
126 if (!ameth || !ameth->old_priv_decode)
128 ret=d2i_PrivateKey(ameth->pkey_id,x,&p,len);
145 if (!x->ameth || x->ameth->priv_encode)
150 BIO_snprintf(pem_str, 80, "%s PRIVATE KEY", x->ameth->pem_str);
175 || !ret->ameth->param_decode
176 || !ret->ameth->param_decode(ret, &p, len)
    [all...]
pem_lib.c 195 const EVP_PKEY_ASN1_METHOD *ameth; local
207 ameth = EVP_PKEY_asn1_find_str(NULL, nm, slen);
208 if (ameth && ameth->old_priv_decode)
217 const EVP_PKEY_ASN1_METHOD *ameth; local
222 ameth = EVP_PKEY_asn1_find_str(&e, nm, slen);
223 if (ameth)
226 if (ameth->param_decode)
  /external/openssl/apps/
genpkey.c 367 const EVP_PKEY_ASN1_METHOD *ameth; local
377 ameth = EVP_PKEY_asn1_find_str(&tmpeng, algname, -1);
380 if (!ameth && e)
381 ameth = ENGINE_get_pkey_asn1_meth_str(e, algname, -1);
384 if (!ameth)
392 EVP_PKEY_asn1_get0_info(&pkey_id, NULL, NULL, NULL, NULL, ameth);
dgst.c 499 const EVP_PKEY_ASN1_METHOD *ameth; local
500 ameth = EVP_PKEY_get0_asn1(sigkey);
501 if (ameth)
503 NULL, NULL, &sig_name, ameth);
openssl.c 556 const EVP_PKEY_ASN1_METHOD *ameth; local
559 ameth = EVP_PKEY_asn1_get0(i);
561 &pinfo, &pem_str, ameth);
req.c 1608 const EVP_PKEY_ASN1_METHOD *ameth; local
1687 const EVP_PKEY_ASN1_METHOD *ameth; local
    [all...]
  /external/openssl/crypto/asn1/
ameth_lib.c 116 const EVP_PKEY_ASN1_METHOD *, ameth);
125 const EVP_PKEY_ASN1_METHOD *, ameth);
204 const EVP_PKEY_ASN1_METHOD *ameth; local
211 ameth = ENGINE_pkey_asn1_find_str(&e, str, len);
212 if (ameth)
218 ameth = NULL;
221 return ameth;
228 ameth = EVP_PKEY_asn1_get0(i);
229 if (ameth->pkey_flags & ASN1_PKEY_ALIAS)
231 if (((int)strlen(ameth->pem_str) == len) &&
254 EVP_PKEY_ASN1_METHOD *ameth; local
289 EVP_PKEY_ASN1_METHOD *ameth; local
    [all...]
  /external/openssl/crypto/evp/
p_lib.c 87 if (pkey && pkey->ameth && pkey->ameth->pkey_bits)
88 return pkey->ameth->pkey_bits(pkey);
94 if (pkey && pkey->ameth && pkey->ameth->pkey_size)
95 return pkey->ameth->pkey_size(pkey);
137 if (from->ameth && from->ameth->param_copy)
138 return from->ameth->param_copy(to, from);
145 if (pkey->ameth && pkey->ameth->param_missing
209 const EVP_PKEY_ASN1_METHOD *ameth; local
363 const EVP_PKEY_ASN1_METHOD *ameth; local
    [all...]
evp.h 132 const EVP_PKEY_ASN1_METHOD *ameth; member in struct:evp_pkey_st
    [all...]
  /external/openssl/ssl/
ssl_ciph.c 325 const EVP_PKEY_ASN1_METHOD *ameth; local
327 ameth = EVP_PKEY_asn1_find_str(NULL,pkey_name,-1);
328 if (ameth)
330 EVP_PKEY_asn1_get0_info(&pkey_id, NULL,NULL,NULL,NULL,ameth);
339 const EVP_PKEY_ASN1_METHOD *ameth; local
342 ameth = EVP_PKEY_asn1_find_str(&tmpeng,pkey_name,-1);
343 if (ameth)
345 EVP_PKEY_asn1_get0_info(&pkey_id, NULL,NULL,NULL,NULL,ameth);
    [all...]
  /external/openssl/include/openssl/
evp.h 132 const EVP_PKEY_ASN1_METHOD *ameth; member in struct:evp_pkey_st
    [all...]

Completed in 283 milliseconds