/third_party/openssl/crypto/asn1/ |
D | ameth_lib.c | 349 int (*pkey_ctrl) (EVP_PKEY *pkey, int op, in EVP_PKEY_asn1_set_ctrl() 352 ameth->pkey_ctrl = pkey_ctrl; in EVP_PKEY_asn1_set_ctrl()
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
D | ameth_lib.c | 349 int (*pkey_ctrl) (EVP_PKEY *pkey, int op, in EVP_PKEY_asn1_set_ctrl() 352 ameth->pkey_ctrl = pkey_ctrl; in EVP_PKEY_asn1_set_ctrl()
|
/third_party/node/deps/openssl/openssl/crypto/pkcs7/ |
D | pk7_lib.c | 373 if (pkey->ameth != NULL && pkey->ameth->pkey_ctrl != NULL) { in PKCS7_SIGNER_INFO_set() 374 ret = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_PKCS7_SIGN, 0, p7i); in PKCS7_SIGNER_INFO_set() 644 if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL) { in PKCS7_RECIP_INFO_set() 650 ret = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_PKCS7_ENCRYPT, 0, p7i); in PKCS7_RECIP_INFO_set()
|
/third_party/openssl/crypto/pkcs7/ |
D | pk7_lib.c | 373 if (pkey->ameth != NULL && pkey->ameth->pkey_ctrl != NULL) { in PKCS7_SIGNER_INFO_set() 374 ret = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_PKCS7_SIGN, 0, p7i); in PKCS7_SIGNER_INFO_set() 644 if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL) { in PKCS7_RECIP_INFO_set() 650 ret = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_PKCS7_ENCRYPT, 0, p7i); in PKCS7_RECIP_INFO_set()
|
/third_party/node/deps/openssl/openssl/crypto/cms/ |
D | cms_env.c | 127 if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL) in ossl_cms_env_asn1_ctrl() 129 i = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_CMS_ENVELOPE, cmd, ri); in ossl_cms_env_asn1_ctrl() 1311 if (pk->ameth && pk->ameth->pkey_ctrl) { in ossl_cms_pkey_get_ri_type() 1313 i = pk->ameth->pkey_ctrl(pk, ASN1_PKEY_CTRL_CMS_RI_TYPE, 0, &r); in ossl_cms_pkey_get_ri_type() 1324 if (pk->ameth != NULL && pk->ameth->pkey_ctrl != NULL) { in ossl_cms_pkey_is_ri_type_supported() 1327 i = pk->ameth->pkey_ctrl(pk, ASN1_PKEY_CTRL_CMS_IS_RI_TYPE_SUPPORTED, in ossl_cms_pkey_is_ri_type_supported()
|
D | cms_sd.c | 241 if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL) in cms_sd_asn1_ctrl() 243 i = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_CMS_SIGN, cmd, si); in cms_sd_asn1_ctrl()
|
/third_party/openssl/crypto/cms/ |
D | cms_env.c | 127 if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL) in ossl_cms_env_asn1_ctrl() 129 i = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_CMS_ENVELOPE, cmd, ri); in ossl_cms_env_asn1_ctrl() 1309 if (pk->ameth && pk->ameth->pkey_ctrl) { in ossl_cms_pkey_get_ri_type() 1311 i = pk->ameth->pkey_ctrl(pk, ASN1_PKEY_CTRL_CMS_RI_TYPE, 0, &r); in ossl_cms_pkey_get_ri_type() 1322 if (pk->ameth != NULL && pk->ameth->pkey_ctrl != NULL) { in ossl_cms_pkey_is_ri_type_supported() 1325 i = pk->ameth->pkey_ctrl(pk, ASN1_PKEY_CTRL_CMS_IS_RI_TYPE_SUPPORTED, in ossl_cms_pkey_is_ri_type_supported()
|
D | cms_sd.c | 241 if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL) in cms_sd_asn1_ctrl() 243 i = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_CMS_SIGN, cmd, si); in cms_sd_asn1_ctrl()
|
/third_party/openssl/ohos_lite/include/crypto/ |
D | asn1.h | 44 int (*pkey_ctrl) (EVP_PKEY *pkey, int op, long arg1, void *arg2); member
|
/third_party/node/deps/openssl/openssl/include/crypto/ |
D | asn1.h | 53 int (*pkey_ctrl) (EVP_PKEY *pkey, int op, long arg1, void *arg2); member
|
/third_party/openssl/include/crypto/ |
D | asn1.h | 53 int (*pkey_ctrl) (EVP_PKEY *pkey, int op, long arg1, void *arg2); member
|
/third_party/openssl/doc/man3/ |
D | EVP_PKEY_ASN1_METHOD.pod | 85 int (*pkey_ctrl) (EVP_PKEY *pkey, int op, 256 int (*pkey_ctrl) (EVP_PKEY *pkey, int op, long arg1, void *arg2); 258 The pkey_ctrl() method adds extra algorithm specific control.
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
D | p_lib.c | 1321 if (pkey->ameth->pkey_ctrl == NULL) in evp_pkey_asn1_ctrl() 1323 return pkey->ameth->pkey_ctrl(pkey, op, arg1, arg2); in evp_pkey_asn1_ctrl()
|
/third_party/openssl/crypto/evp/ |
D | p_lib.c | 1320 if (pkey->ameth->pkey_ctrl == NULL) in evp_pkey_asn1_ctrl() 1322 return pkey->ameth->pkey_ctrl(pkey, op, arg1, arg2); in evp_pkey_asn1_ctrl()
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | evp.h | 1205 int (*pkey_ctrl) (EVP_PKEY *pkey, int op,
|
/third_party/openssl/include/openssl/ |
D | evp.h | 1619 int (*pkey_ctrl) (EVP_PKEY *pkey, int op,
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
D | evp.h | 1619 int (*pkey_ctrl) (EVP_PKEY *pkey, int op,
|