From 2f3451992e6fa45be492abf173272cf513fc2842 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Thu, 11 Apr 2019 08:18:34 +0000 Subject: IPSEC-MB: Use random & non-repeating IV (VPP-1642) hard code IV and key lengths based on cipher. Init IV from random data, use AES instruction to rotate. Change-Id: I13a6507d12267b823c528660a903787baeba47a0 Signed-off-by: Neale Ranns (cherry picked from commit 21ada3bd7e9bc5cca7c2c8399adcbaa044bf8103) --- test/test_ipsec_ah.py | 2 +- test/test_ipsec_esp.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/test_ipsec_ah.py b/test/test_ipsec_ah.py index 38d97d584c5..65df8766aeb 100644 --- a/test/test_ipsec_ah.py +++ b/test/test_ipsec_ah.py @@ -337,7 +337,7 @@ class TestIpsecAhAll(ConfigIpsecAH, # loop through the VPP engines # for engine in engines: - self.vapi.cli("set crypto engine all %s" % engine) + self.vapi.cli("set crypto handler all %s" % engine) # # loop through each of the algorithms # diff --git a/test/test_ipsec_esp.py b/test/test_ipsec_esp.py index a8b28c53ee6..85dfc8a41a6 100644 --- a/test/test_ipsec_esp.py +++ b/test/test_ipsec_esp.py @@ -380,7 +380,7 @@ class TestIpsecEspAll(ConfigIpsecESP, # loop through the VPP engines # for engine in engines: - self.vapi.cli("set crypto engine all %s" % engine) + self.vapi.cli("set crypto handler all %s" % engine) # # loop through each of the algorithms -- cgit 1.2.3-korg