| 741 | } |
| 742 | |
| 743 | int |
| 744 | check_auth_capabilities_supported(const enum rte_crypto_auth_algorithm *auths, |
| 745 | uint16_t num_auths) |
| 746 | { |
| 747 | return check_capabilities_supported(RTE_CRYPTO_SYM_XFORM_AUTH, |
| 748 | (const int *) auths, num_auths); |
| 749 | } |
| 750 | |
| 751 | int |
| 752 | check_aead_capabilities_supported(const enum rte_crypto_aead_algorithm *aeads, |
no test coverage detected