X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftemplate_ipsec.py;h=defd6f2bb3fcb54ced8bd0c85dc4d336dd467771;hb=84e665848;hp=ba1c2465f124ff9e2999bcb5d87be053f9cb05bb;hpb=96600f907743729d25be38db292e093279e97d54;p=vpp.git diff --git a/test/template_ipsec.py b/test/template_ipsec.py index ba1c2465f12..defd6f2bb3f 100644 --- a/test/template_ipsec.py +++ b/test/template_ipsec.py @@ -122,7 +122,7 @@ class IPsecIPv6Params: def mk_scapy_crypt_key(p): - if p.crypt_algo in ("AES-GCM", "AES-CTR"): + if p.crypt_algo in ("AES-GCM", "AES-CTR", "AES-NULL-GMAC"): return p.crypt_key + struct.pack("!I", p.salt) else: return p.crypt_key @@ -342,7 +342,7 @@ class IpsecTra4(object): return count def get_hash_failed_counts(self, p): - if ESP == self.encryption_type and p.crypt_algo == "AES-GCM": + if ESP == self.encryption_type and p.crypt_algo in ("AES-GCM", "AES-NULL-GMAC"): hash_failed_node_name = ( "/err/%s/decryption_failed" % self.tra4_decrypt_node_name[p.async_mode] ) @@ -638,7 +638,7 @@ class IpsecTra4(object): undersize_node_name = "/err/%s/runt" % self.tra4_decrypt_node_name[0] undersize_count = self.statistics.get_err_counter(undersize_node_name) # For AES-GCM an error in the hash is reported as a decryption failure - if p.crypt_algo == "AES-GCM": + if p.crypt_algo in ("AES-GCM", "AES-NULL-GMAC"): hash_err = "decryption_failed" # In async mode, we don't report errors in the hash. if p.async_mode: