Lines Matching refs:fns
1568 const OSSL_DISPATCH *fns = algodef->implementation; in evp_cipher_from_algorithm() local
1594 for (; fns->function_id != 0; fns++) { in evp_cipher_from_algorithm()
1595 switch (fns->function_id) { in evp_cipher_from_algorithm()
1599 cipher->newctx = OSSL_FUNC_cipher_newctx(fns); in evp_cipher_from_algorithm()
1605 cipher->einit = OSSL_FUNC_cipher_encrypt_init(fns); in evp_cipher_from_algorithm()
1611 cipher->dinit = OSSL_FUNC_cipher_decrypt_init(fns); in evp_cipher_from_algorithm()
1617 cipher->cupdate = OSSL_FUNC_cipher_update(fns); in evp_cipher_from_algorithm()
1623 cipher->cfinal = OSSL_FUNC_cipher_final(fns); in evp_cipher_from_algorithm()
1629 cipher->ccipher = OSSL_FUNC_cipher_cipher(fns); in evp_cipher_from_algorithm()
1634 cipher->freectx = OSSL_FUNC_cipher_freectx(fns); in evp_cipher_from_algorithm()
1640 cipher->dupctx = OSSL_FUNC_cipher_dupctx(fns); in evp_cipher_from_algorithm()
1645 cipher->get_params = OSSL_FUNC_cipher_get_params(fns); in evp_cipher_from_algorithm()
1650 cipher->get_ctx_params = OSSL_FUNC_cipher_get_ctx_params(fns); in evp_cipher_from_algorithm()
1655 cipher->set_ctx_params = OSSL_FUNC_cipher_set_ctx_params(fns); in evp_cipher_from_algorithm()
1660 cipher->gettable_params = OSSL_FUNC_cipher_gettable_params(fns); in evp_cipher_from_algorithm()
1666 OSSL_FUNC_cipher_gettable_ctx_params(fns); in evp_cipher_from_algorithm()
1672 OSSL_FUNC_cipher_settable_ctx_params(fns); in evp_cipher_from_algorithm()