Searched refs:pkey_ctrl (Results 1 – 8 of 8) sorted by relevance
| /src/crypto/openssl/crypto/asn1/ |
| H A D | ameth_lib.c | 348 int (*pkey_ctrl)(EVP_PKEY *pkey, int op, in EVP_PKEY_asn1_set_ctrl() 351 ameth->pkey_ctrl = pkey_ctrl; in EVP_PKEY_asn1_set_ctrl()
|
| /src/crypto/openssl/crypto/pkcs7/ |
| H A D | pk7_lib.c | 382 if (pkey->ameth != NULL && pkey->ameth->pkey_ctrl != NULL) { in PKCS7_SIGNER_INFO_set() 383 ret = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_PKCS7_SIGN, 0, p7i); in PKCS7_SIGNER_INFO_set() 650 if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL) { in PKCS7_RECIP_INFO_set() 656 ret = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_PKCS7_ENCRYPT, 0, p7i); in PKCS7_RECIP_INFO_set()
|
| /src/crypto/openssl/crypto/cms/ |
| H A D | cms_env.c | 133 if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL) in ossl_cms_env_asn1_ctrl() 135 i = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_CMS_ENVELOPE, cmd, ri); in ossl_cms_env_asn1_ctrl() 1356 if (pk->ameth && pk->ameth->pkey_ctrl) { in ossl_cms_pkey_get_ri_type() 1358 i = pk->ameth->pkey_ctrl(pk, ASN1_PKEY_CTRL_CMS_RI_TYPE, 0, &r); in ossl_cms_pkey_get_ri_type() 1369 if (pk->ameth != NULL && pk->ameth->pkey_ctrl != NULL) { in ossl_cms_pkey_is_ri_type_supported() 1372 i = pk->ameth->pkey_ctrl(pk, ASN1_PKEY_CTRL_CMS_IS_RI_TYPE_SUPPORTED, in ossl_cms_pkey_is_ri_type_supported()
|
| H A D | cms_sd.c | 280 if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL) in cms_sd_asn1_ctrl() 282 i = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_CMS_SIGN, cmd, si); in cms_sd_asn1_ctrl()
|
| /src/crypto/openssl/include/crypto/ |
| H A D | asn1.h | 53 int (*pkey_ctrl)(EVP_PKEY *pkey, int op, long arg1, void *arg2); member
|
| /src/crypto/openssl/doc/man3/ |
| H A 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.
|
| /src/crypto/openssl/crypto/evp/ |
| H A D | p_lib.c | 1371 if (pkey->ameth->pkey_ctrl == NULL) in evp_pkey_asn1_ctrl() 1373 return pkey->ameth->pkey_ctrl(pkey, op, arg1, arg2); in evp_pkey_asn1_ctrl()
|
| /src/crypto/openssl/include/openssl/ |
| H A D | evp.h | 1668 int (*pkey_ctrl)(EVP_PKEY *pkey, int op,
|