aboutsummaryrefslogtreecommitdiff
path: root/test/validation/api/ipsec/ipsec.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/validation/api/ipsec/ipsec.c')
-rw-r--r--test/validation/api/ipsec/ipsec.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/test/validation/api/ipsec/ipsec.c b/test/validation/api/ipsec/ipsec.c
index a76bac973..981bc9155 100644
--- a/test/validation/api/ipsec/ipsec.c
+++ b/test/validation/api/ipsec/ipsec.c
@@ -217,20 +217,17 @@ int ipsec_check_esp_aes_gcm_256(void)
int ipsec_check_ah_aes_gmac_128(void)
{
- return ipsec_check_esp(ODP_CIPHER_ALG_NULL, 0,
- ODP_AUTH_ALG_AES_GMAC, 128);
+ return ipsec_check_ah(ODP_AUTH_ALG_AES_GMAC, 128);
}
int ipsec_check_ah_aes_gmac_192(void)
{
- return ipsec_check_esp(ODP_CIPHER_ALG_NULL, 0,
- ODP_AUTH_ALG_AES_GMAC, 192);
+ return ipsec_check_ah(ODP_AUTH_ALG_AES_GMAC, 192);
}
int ipsec_check_ah_aes_gmac_256(void)
{
- return ipsec_check_esp(ODP_CIPHER_ALG_NULL, 0,
- ODP_AUTH_ALG_AES_GMAC, 256);
+ return ipsec_check_ah(ODP_AUTH_ALG_AES_GMAC, 256);
}
int ipsec_check_esp_null_aes_gmac_128(void)