Lines Matching refs:fns
62 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kdf_from_algorithm() local
77 for (; fns->function_id != 0; fns++) { in evp_kdf_from_algorithm()
78 switch (fns->function_id) { in evp_kdf_from_algorithm()
82 kdf->newctx = OSSL_FUNC_kdf_newctx(fns); in evp_kdf_from_algorithm()
88 kdf->dupctx = OSSL_FUNC_kdf_dupctx(fns); in evp_kdf_from_algorithm()
93 kdf->freectx = OSSL_FUNC_kdf_freectx(fns); in evp_kdf_from_algorithm()
99 kdf->reset = OSSL_FUNC_kdf_reset(fns); in evp_kdf_from_algorithm()
104 kdf->derive = OSSL_FUNC_kdf_derive(fns); in evp_kdf_from_algorithm()
111 OSSL_FUNC_kdf_gettable_params(fns); in evp_kdf_from_algorithm()
117 OSSL_FUNC_kdf_gettable_ctx_params(fns); in evp_kdf_from_algorithm()
123 OSSL_FUNC_kdf_settable_ctx_params(fns); in evp_kdf_from_algorithm()
128 kdf->get_params = OSSL_FUNC_kdf_get_params(fns); in evp_kdf_from_algorithm()
133 kdf->get_ctx_params = OSSL_FUNC_kdf_get_ctx_params(fns); in evp_kdf_from_algorithm()
138 kdf->set_ctx_params = OSSL_FUNC_kdf_set_ctx_params(fns); in evp_kdf_from_algorithm()