Searched refs:custom_pmeth (Results 1 – 1 of 1) sorted by relevance
/freebsd/crypto/openssl/test/ |
H A D | evp_extra_test.c | 2360 static EVP_PKEY_METHOD *custom_pmeth; variable 4421 static EVP_PKEY_METHOD *custom_pmeth = NULL; variable 4605 || !TEST_ptr(custom_pmeth = EVP_PKEY_meth_new(id, orig_flags))) in test_custom_pmeth() 4609 EVP_PKEY_meth_set_digestsign(custom_pmeth, custom_pmeth_digestsign); in test_custom_pmeth() 4611 EVP_PKEY_meth_set_derive(custom_pmeth, NULL, custom_pmeth_derive); in test_custom_pmeth() 4613 EVP_PKEY_meth_set_sign(custom_pmeth, NULL, custom_pmeth_sign); in test_custom_pmeth() 4616 EVP_PKEY_meth_set_init(custom_pmeth, custom_pmeth_init); in test_custom_pmeth() 4617 EVP_PKEY_meth_set_cleanup(custom_pmeth, custom_pmeth_cleanup); in test_custom_pmeth() 4618 EVP_PKEY_meth_set_copy(custom_pmeth, custom_pmeth_copy); in test_custom_pmeth() 4620 EVP_PKEY_meth_set_ctrl(custom_pmeth, custom_pmeth_ctrl, NULL); in test_custom_pmeth() [all …]
|