aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDmitry Vakhrushev <dmitry@netgate.com>2019-08-14 00:12:33 -0400
committerNeale Ranns <nranns@cisco.com>2019-08-16 09:11:41 +0000
commit77cc14a2b29a65073539e6e3f4683a380875b3dc (patch)
treefc795e8aaff808aa2b1acee7952e01c52612288e /test
parent018c14b7dbc5a910693f150045bfa803c4ae4eec (diff)
ipsec: fix missed IPSEC_INTEG_ALG_MD5_96
This algorithm was missed in last improvements. Type:fix Signed-off-by: Dmitry Vakhrushev <dmitry@netgate.com> Change-Id: Ib818cbdcdd1a6f298e8b0086dac4189cc201baa3
Diffstat (limited to 'test')
-rw-r--r--test/test_ipsec_esp.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_ipsec_esp.py b/test/test_ipsec_esp.py
index b13d6926e21..26f83f16b92 100644
--- a/test/test_ipsec_esp.py
+++ b/test/test_ipsec_esp.py
@@ -366,7 +366,7 @@ class TestIpsecEspAll(ConfigIpsecESP,
@parameterized.expand(["ia32", "ipsecmb", "openssl"])
def test_crypto_algs(self, engine):
- """AES-[CBC, GCM]-[128, 192, 256] 3DES-CBC w/ & w/o ESN"""
+ """AES-[CBC, GCM]-[128, 192, 256] 3DES-CBC SHA1 MD5 w/ & w/o ESN"""
# foreach crypto algorithm
algos = [{'vpp-crypto': (VppEnum.vl_api_ipsec_crypto_alg_t.
@@ -396,9 +396,9 @@ class TestIpsecEspAll(ConfigIpsecESP,
{'vpp-crypto': (VppEnum.vl_api_ipsec_crypto_alg_t.
IPSEC_API_CRYPTO_ALG_AES_CBC_128),
'vpp-integ': (VppEnum.vl_api_ipsec_integ_alg_t.
- IPSEC_API_INTEG_ALG_SHA1_96),
+ IPSEC_API_INTEG_ALG_MD5_96),
'scapy-crypto': "AES-CBC",
- 'scapy-integ': "HMAC-SHA1-96",
+ 'scapy-integ': "HMAC-MD5-96",
'salt': 0,
'key': "JPjyOWBeVEQiMe7h"},
{'vpp-crypto': (VppEnum.vl_api_ipsec_crypto_alg_t.