Lines Matching refs:custom_pmeth

2715 static EVP_PKEY_METHOD *custom_pmeth;  variable
4879 static EVP_PKEY_METHOD *custom_pmeth = NULL; variable
5063 || !TEST_ptr(custom_pmeth = EVP_PKEY_meth_new(id, orig_flags))) in test_custom_pmeth()
5067 EVP_PKEY_meth_set_digestsign(custom_pmeth, custom_pmeth_digestsign); in test_custom_pmeth()
5069 EVP_PKEY_meth_set_derive(custom_pmeth, NULL, custom_pmeth_derive); in test_custom_pmeth()
5071 EVP_PKEY_meth_set_sign(custom_pmeth, NULL, custom_pmeth_sign); in test_custom_pmeth()
5074 EVP_PKEY_meth_set_init(custom_pmeth, custom_pmeth_init); in test_custom_pmeth()
5075 EVP_PKEY_meth_set_cleanup(custom_pmeth, custom_pmeth_cleanup); in test_custom_pmeth()
5076 EVP_PKEY_meth_set_copy(custom_pmeth, custom_pmeth_copy); in test_custom_pmeth()
5078 EVP_PKEY_meth_set_ctrl(custom_pmeth, custom_pmeth_ctrl, NULL); in test_custom_pmeth()
5079 if (!TEST_true(EVP_PKEY_meth_add0(custom_pmeth))) in test_custom_pmeth()
5125 EVP_PKEY_meth_remove(custom_pmeth); in test_custom_pmeth()
5126 EVP_PKEY_meth_free(custom_pmeth); in test_custom_pmeth()
5127 custom_pmeth = NULL; in test_custom_pmeth()
5987 custom_pmeth = EVP_PKEY_meth_new(0xdefaced, 0); in setup_tests()
5988 if (!TEST_ptr(custom_pmeth)) in setup_tests()
5990 EVP_PKEY_meth_set_check(custom_pmeth, pkey_custom_check); in setup_tests()
5991 EVP_PKEY_meth_set_public_check(custom_pmeth, pkey_custom_pub_check); in setup_tests()
5992 EVP_PKEY_meth_set_param_check(custom_pmeth, pkey_custom_param_check); in setup_tests()
5993 if (!TEST_int_eq(EVP_PKEY_meth_add0(custom_pmeth), 1)) in setup_tests()