test/threads: add unit test
[dpdk.git] / app / test / test_cryptodev_security_ipsec.h
index fa7bb06..0d9b5b6 100644 (file)
@@ -41,6 +41,8 @@ struct ipsec_test_data {
 
        bool aead;
 
+       bool aes_gmac;
+
        bool auth_only;
 
        /* Antireplay packet */
@@ -186,6 +188,13 @@ static const struct crypto_param auth_list[] = {
                .key_length = 16,
                .digest_length = 12,
        },
+       {
+               .type = RTE_CRYPTO_SYM_XFORM_AUTH,
+               .alg.auth =  RTE_CRYPTO_AUTH_AES_GMAC,
+               .key_length = 16,
+               .digest_length = 16,
+               .iv_length = 12,
+       },
 };
 
 struct crypto_param_comb {