| 733 | } |
| 734 | |
| 735 | int |
| 736 | check_cipher_capabilities_supported(const enum rte_crypto_cipher_algorithm *ciphers, |
| 737 | uint16_t num_ciphers) |
| 738 | { |
| 739 | return check_capabilities_supported(RTE_CRYPTO_SYM_XFORM_CIPHER, |
| 740 | (const int *) ciphers, num_ciphers); |
| 741 | } |
| 742 | |
| 743 | int |
| 744 | check_auth_capabilities_supported(const enum rte_crypto_auth_algorithm *auths, |
no test coverage detected