commit | 490b92738f3cc1c8d534abd6dee8dba942cb652d | [log] [tgz] |
---|---|---|
author | Benoît Ganne <bganne@cisco.com> | Fri Jan 22 18:03:09 2021 +0100 |
committer | Neale Ranns <neale@graphiant.com> | Fri Feb 05 12:52:07 2021 +0000 |
tree | 84c72b4573e73ed63b31f80d0289c8efa1a5e0d5 | |
parent | b8ce5b784c8852f274ac25a22ee6d8806c2fab2e [diff] [blame] |
ipsec: add support for AES CTR Type: feature Change-Id: I9f7742cb12ce30592b0b022c314b71c81fa7223a Signed-off-by: Benoît Ganne <bganne@cisco.com>
diff --git a/test/template_ipsec.py b/test/template_ipsec.py index 9a9fbd0..918c993 100644 --- a/test/template_ipsec.py +++ b/test/template_ipsec.py
@@ -94,7 +94,7 @@ def mk_scapy_crypt_key(p): - if p.crypt_algo == "AES-GCM": + if p.crypt_algo in ("AES-GCM", "AES-CTR"): return p.crypt_key + struct.pack("!I", p.salt) else: return p.crypt_key