Home
last modified time | relevance | path

Searched refs:palg (Results 1 – 23 of 23) sorted by relevance

/openssl/crypto/asn1/
H A Dx_sig.c23 void X509_SIG_get0(const X509_SIG *sig, const X509_ALGOR **palg,
26 if (palg)
27 *palg = sig->algor;
32 void X509_SIG_getm(X509_SIG *sig, X509_ALGOR **palg, in X509_SIG_getm() argument
35 if (palg) in X509_SIG_getm()
36 *palg = sig->algor; in X509_SIG_getm()
H A Dx_algor.c142 int ossl_x509_algor_new_from_md(X509_ALGOR **palg, const EVP_MD *md) in ossl_x509_algor_new_from_md() argument
152 *palg = alg; in ossl_x509_algor_new_from_md()
178 int ossl_x509_algor_md_to_mgf1(X509_ALGOR **palg, const EVP_MD *mgf1md) in ossl_x509_algor_md_to_mgf1() argument
183 *palg = NULL; in ossl_x509_algor_md_to_mgf1()
191 *palg = ossl_X509_ALGOR_from_nid(NID_mgf1, V_ASN1_SEQUENCE, stmp); in ossl_x509_algor_md_to_mgf1()
192 if (*palg == NULL) in ossl_x509_algor_md_to_mgf1()
198 return *palg != NULL; in ossl_x509_algor_md_to_mgf1()
/openssl/crypto/ec/
H A Decx_backend.c155 ECX_KEY *ossl_ecx_key_op(const X509_ALGOR *palg, in ossl_ecx_key_op() argument
164 if (palg != NULL) { in ossl_ecx_key_op()
168 X509_ALGOR_get0(NULL, &ptype, NULL, palg); in ossl_ecx_key_op()
174 id = OBJ_obj2nid(palg->algorithm); in ossl_ecx_key_op()
175 else if (id != OBJ_obj2nid(palg->algorithm)) { in ossl_ecx_key_op()
237 const X509_ALGOR *palg; in ossl_ecx_key_from_pkcs8() local
239 if (!PKCS8_pkey_get0(NULL, &p, &plen, &palg, p8inf)) in ossl_ecx_key_from_pkcs8()
255 ecx = ossl_ecx_key_op(palg, p, plen, EVP_PKEY_NONE, KEY_OP_PRIVATE, in ossl_ecx_key_from_pkcs8()
H A Dec_backend.c737 int ossl_x509_algor_is_sm2(const X509_ALGOR *palg) in ossl_x509_algor_is_sm2() argument
742 X509_ALGOR_get0(NULL, &ptype, &pval, palg); in ossl_x509_algor_is_sm2()
766 EC_KEY *ossl_ec_key_param_from_x509_algor(const X509_ALGOR *palg, in ossl_ec_key_param_from_x509_algor() argument
774 X509_ALGOR_get0(NULL, &ptype, &pval, palg); in ossl_ec_key_param_from_x509_algor()
823 const X509_ALGOR *palg; in ossl_ec_key_from_pkcs8() local
825 if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8inf)) in ossl_ec_key_from_pkcs8()
827 eckey = ossl_ec_key_param_from_x509_algor(palg, libctx, propq); in ossl_ec_key_from_pkcs8()
H A Dec_ameth.c108 X509_ALGOR *palg; in eckey_pub_decode() local
113 || !X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey)) in eckey_pub_decode()
115 eckey = ossl_ec_key_param_from_x509_algor(palg, libctx, propq); in eckey_pub_decode()
H A Decx_meth.c60 X509_ALGOR *palg; in ecx_pub_decode() local
64 if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey)) in ecx_pub_decode()
66 ecx = ossl_ecx_key_op(palg, p, pklen, pkey->ameth->pkey_id, in ecx_pub_decode()
/openssl/crypto/x509/
H A Dx509_req.c251 const X509_ALGOR **palg) in X509_REQ_get0_signature() argument
255 if (palg != NULL) in X509_REQ_get0_signature()
256 *palg = &req->sig_alg; in X509_REQ_get0_signature()
266 int X509_REQ_set1_signature_algo(X509_REQ *req, X509_ALGOR *palg) in X509_REQ_set1_signature_algo() argument
268 return X509_ALGOR_copy(&req->sig_alg, palg); in X509_REQ_set1_signature_algo()
H A Dx509cset.c122 const X509_ALGOR **palg) in X509_CRL_get0_signature() argument
126 if (palg != NULL) in X509_CRL_get0_signature()
127 *palg = &crl->sig_alg; in X509_CRL_get0_signature()
H A Dx_x509.c296 const X509_ALGOR **palg, const X509 *x) in X509_get0_signature() argument
300 if (palg) in X509_get0_signature()
301 *palg = &x->sig_alg; in X509_get0_signature()
/openssl/crypto/dh/
H A Ddh_backend.c195 const X509_ALGOR *palg; in ossl_dh_key_from_pkcs8() local
200 if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8inf)) in ossl_dh_key_from_pkcs8()
203 X509_ALGOR_get0(NULL, &ptype, &pval, palg); in ossl_dh_key_from_pkcs8()
213 switch (OBJ_obj2nid(palg->algorithm)) { in ossl_dh_key_from_pkcs8()
H A Ddh_ameth.c67 X509_ALGOR *palg; in dh_pub_decode() local
72 if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey)) in dh_pub_decode()
74 X509_ALGOR_get0(NULL, &ptype, &pval, palg); in dh_pub_decode()
/openssl/doc/man3/
H A DX509_get0_signature.pod15 const X509_ALGOR **palg,
18 int X509_REQ_set1_signature_algo(X509_REQ *req, X509_ALGOR *palg);
24 const X509_ALGOR **palg);
29 const X509_ALGOR **palg);
42 X509_get0_signature() sets B<*psig> to the signature of B<x> and B<*palg>
H A DX509_SIG_get0.pod11 void X509_SIG_get0(const X509_SIG *sig, const X509_ALGOR **palg,
13 void X509_SIG_getm(X509_SIG *sig, X509_ALGOR **palg,
H A DCMS_get0_RecipientInfos.pod30 int CMS_RecipientInfo_kekri_get0_id(CMS_RecipientInfo *ri, X509_ALGOR **palg,
77 B<palg>, the B<keyIdentifier> field is written to B<pid>, the B<date> field if
/openssl/crypto/dsa/
H A Ddsa_backend.c131 const X509_ALGOR *palg; in ossl_dsa_key_from_pkcs8() local
139 if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8inf)) in ossl_dsa_key_from_pkcs8()
141 X509_ALGOR_get0(NULL, &ptype, &pval, palg); in ossl_dsa_key_from_pkcs8()
H A Ddsa_ameth.c36 X509_ALGOR *palg; in dsa_pub_decode() local
41 if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey)) in dsa_pub_decode()
43 X509_ALGOR_get0(NULL, &ptype, &pval, palg); in dsa_pub_decode()
/openssl/include/crypto/
H A Dec.h82 int ossl_x509_algor_is_sm2(const X509_ALGOR *palg);
83 EC_KEY *ossl_ec_key_param_from_x509_algor(const X509_ALGOR *palg,
H A Dasn1.h139 int ossl_x509_algor_new_from_md(X509_ALGOR **palg, const EVP_MD *md);
142 int ossl_x509_algor_md_to_mgf1(X509_ALGOR **palg, const EVP_MD *mgf1md);
H A Decx.h134 ECX_KEY *ossl_ecx_key_op(const X509_ALGOR *palg,
/openssl/crypto/cms/
H A Dcms_kari.c29 X509_ALGOR **palg, in CMS_RecipientInfo_kari_get0_alg() argument
36 if (palg) in CMS_RecipientInfo_kari_get0_alg()
37 *palg = ri->d.kari->keyEncryptionAlgorithm; in CMS_RecipientInfo_kari_get0_alg()
H A Dcms_env.c434 X509_ALGOR **palg) in CMS_RecipientInfo_ktri_get0_algs() argument
448 if (palg) in CMS_RecipientInfo_ktri_get0_algs()
449 *palg = ktri->keyEncryptionAlgorithm; in CMS_RecipientInfo_ktri_get0_algs()
783 X509_ALGOR **palg, in CMS_RecipientInfo_kekri_get0_id() argument
795 if (palg) in CMS_RecipientInfo_kekri_get0_id()
796 *palg = ri->d.kekri->keyEncryptionAlgorithm; in CMS_RecipientInfo_kekri_get0_id()
/openssl/include/openssl/
H A Dcms.h.in221 X509_ALGOR **palg);
235 X509_ALGOR **palg,
370 X509_ALGOR **palg,
H A Dx509.h.in533 void X509_SIG_get0(const X509_SIG *sig, const X509_ALGOR **palg,
535 void X509_SIG_getm(X509_SIG *sig, X509_ALGOR **palg,
576 const X509_ALGOR **palg, const X509 *x);
689 const X509_ALGOR **palg);
691 int X509_REQ_set1_signature_algo(X509_REQ *req, X509_ALGOR *palg);
748 const X509_ALGOR **palg);

Completed in 63 milliseconds