diff options
author | Neale Ranns <nranns@cisco.com> | 2019-04-08 07:36:50 +0000 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2019-04-10 18:35:13 +0000 |
commit | 92e93844826fc080ea7f3495ba3e06de3f4d03f1 (patch) | |
tree | 0725acaacebcec816db24be35143824e4326bb68 /test/test_ipsec_esp.py | |
parent | 9847792e18f1fd9f3b8fedea4fc53eed1096ab75 (diff) |
crypto: Intel IPSEC-MB engine
A plugin to use Intel IPSec MB library as a VPP crypto engine
This changes uses concepts from:
https://gerrit.fd.io/r/#/c/17301/
hence that author's work is acknowledge below
Change-Id: I2bf3beeb10f3c9706fa5efbdc9bc023e310f5a92
Signed-off-by: Neale Ranns <nranns@cisco.com>
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/test_ipsec_esp.py')
-rw-r--r-- | test/test_ipsec_esp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_ipsec_esp.py b/test/test_ipsec_esp.py index 283914071ca..a8b28c53ee6 100644 --- a/test/test_ipsec_esp.py +++ b/test/test_ipsec_esp.py @@ -322,7 +322,7 @@ class TemplateIpsecEspUdp(ConfigIpsecESP): self.tun_if).add_vpp_config() self.config_esp_tun(p) - self.logger.info(self.vapi.ppcli("show ipsec")) + self.logger.info(self.vapi.ppcli("show ipsec all")) d = DpoProto.DPO_PROTO_IP4 VppIpRoute(self, p.remote_tun_if_host, p.addr_len, @@ -356,7 +356,7 @@ class TestIpsecEspAll(ConfigIpsecESP, """All engines AES-CBC-[128, 192, 256] w/o ESN""" # foreach VPP crypto engine - engines = ["ia32", "openssl"] + engines = ["ia32", "ipsecmb", "openssl"] # foreach crypto algorithm algos = [{'vpp': VppEnum.vl_api_ipsec_crypto_alg_t. |