Lines Matching refs:fns
1018 const OSSL_DISPATCH *fns = algodef->implementation; in evp_md_from_algorithm() local
1045 for (; fns->function_id != 0; fns++) { in evp_md_from_algorithm()
1046 switch (fns->function_id) { in evp_md_from_algorithm()
1049 md->newctx = OSSL_FUNC_digest_newctx(fns); in evp_md_from_algorithm()
1055 md->dinit = OSSL_FUNC_digest_init(fns); in evp_md_from_algorithm()
1061 md->dupdate = OSSL_FUNC_digest_update(fns); in evp_md_from_algorithm()
1067 md->dfinal = OSSL_FUNC_digest_final(fns); in evp_md_from_algorithm()
1073 md->dsqueeze = OSSL_FUNC_digest_squeeze(fns); in evp_md_from_algorithm()
1079 md->digest = OSSL_FUNC_digest_digest(fns); in evp_md_from_algorithm()
1084 md->freectx = OSSL_FUNC_digest_freectx(fns); in evp_md_from_algorithm()
1090 md->dupctx = OSSL_FUNC_digest_dupctx(fns); in evp_md_from_algorithm()
1094 md->get_params = OSSL_FUNC_digest_get_params(fns); in evp_md_from_algorithm()
1098 md->set_ctx_params = OSSL_FUNC_digest_set_ctx_params(fns); in evp_md_from_algorithm()
1102 md->get_ctx_params = OSSL_FUNC_digest_get_ctx_params(fns); in evp_md_from_algorithm()
1106 md->gettable_params = OSSL_FUNC_digest_gettable_params(fns); in evp_md_from_algorithm()
1111 OSSL_FUNC_digest_settable_ctx_params(fns); in evp_md_from_algorithm()
1116 OSSL_FUNC_digest_gettable_ctx_params(fns); in evp_md_from_algorithm()
1121 OSSL_FUNC_digest_copyctx(fns); in evp_md_from_algorithm()