ipsec: Fix NULL encryption algorithm
Type: fix Ticket: VPP-1756 the block-size was set to 0 resulting in incorrect placement of the ESP footer. add tests for NULL encrypt + integ. Change-Id: I8ab3afda8e68f9ff649540cba3f2cac68f12bbba Signed-off-by: Neale Ranns <nranns@cisco.com>
This commit is contained in:
@ -424,6 +424,14 @@ class TestIpsecEspAll(ConfigIpsecESP,
|
||||
'scapy-crypto': "3DES",
|
||||
'scapy-integ': "HMAC-SHA1-96",
|
||||
'salt': 0,
|
||||
'key': "JPjyOWBeVEQiMe7h00112233"},
|
||||
{'vpp-crypto': (VppEnum.vl_api_ipsec_crypto_alg_t.
|
||||
IPSEC_API_CRYPTO_ALG_NONE),
|
||||
'vpp-integ': (VppEnum.vl_api_ipsec_integ_alg_t.
|
||||
IPSEC_API_INTEG_ALG_SHA1_96),
|
||||
'scapy-crypto': "NULL",
|
||||
'scapy-integ': "HMAC-SHA1-96",
|
||||
'salt': 0,
|
||||
'key': "JPjyOWBeVEQiMe7h00112233"}]
|
||||
|
||||
# with and without ESN
|
||||
|
Reference in New Issue
Block a user