aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Mikus <pmikus@cisco.com>2019-06-14 15:00:17 +0000
committerPeter Mikus <pmikus@cisco.com>2019-06-14 15:01:34 +0000
commitacac11dbf7c5011945b9d5fded1a02aa63b5f964 (patch)
tree6942edb46f4fa3e3bb6be1bebc9a312c250a513b
parent12a51f968499f7710a5f54c7cc3bc2afa5c7bc3b (diff)
FIX: IPsec INT mode
Change-Id: I286490280b6e62f9f212831a5bf1d14db1838fa7 Signed-off-by: Peter Mikus <pmikus@cisco.com>
-rw-r--r--resources/libraries/python/IPsecUtil.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/resources/libraries/python/IPsecUtil.py b/resources/libraries/python/IPsecUtil.py
index 9ba1b3fc18..c4fdefb180 100644
--- a/resources/libraries/python/IPsecUtil.py
+++ b/resources/libraries/python/IPsecUtil.py
@@ -49,10 +49,9 @@ class PolicyAction(Enum):
class CryptoAlg(Enum):
"""Encryption algorithms."""
AES_CBC_128 = ('aes-cbc-128', 'AES-CBC', 16)
- AES_CBC_192 = ('aes-cbc-192', 'AES-CBC', 24)
AES_CBC_256 = ('aes-cbc-256', 'AES-CBC', 32)
- AES_GCM_128 = ('aes-gcm-128', 'AES-GCM', 20)
- AES_GCM_256 = ('aes-gcm-256', 'AES-GCM', 40)
+ AES_GCM_128 = ('aes-gcm-128', 'AES-GCM', 16)
+ AES_GCM_256 = ('aes-gcm-256', 'AES-GCM', 32)
def __init__(self, alg_name, scapy_name, key_len):
self.alg_name = alg_name
@@ -62,12 +61,10 @@ class CryptoAlg(Enum):
class IntegAlg(Enum):
"""Integrity algorithm."""
- SHA1_96 = ('sha1-96', 'HMAC-SHA1-96', 20)
SHA_256_128 = ('sha-256-128', 'SHA2-256-128', 32)
- SHA_384_192 = ('sha-384-192', 'SHA2-384-192', 48)
SHA_512_256 = ('sha-512-256', 'SHA2-512-256', 64)
- AES_GCM_128 = ('aes-gcm-128', 'AES-GCM', 20)
- AES_GCM_256 = ('aes-gcm-256', 'AES-GCM', 40)
+ AES_GCM_128 = ('aes-gcm-128', 'AES-GCM', 16)
+ AES_GCM_256 = ('aes-gcm-256', 'AES-GCM', 32)
def __init__(self, alg_name, scapy_name, key_len):
self.alg_name = alg_name