| 13890 | } |
| 13891 | |
| 13892 | static void |
| 13893 | generate_gmac_large_plaintext(uint8_t *data) |
| 13894 | { |
| 13895 | uint16_t i; |
| 13896 | |
| 13897 | for (i = 32; i < GMAC_LARGE_PLAINTEXT_LENGTH; i += 32) |
| 13898 | memcpy(&data[i], &data[0], 32); |
| 13899 | } |
| 13900 | |
| 13901 | static int |
| 13902 | create_gmac_operation(enum rte_crypto_auth_operation op, |
no test coverage detected