From 704cfa2ed1e7631e60af14a1b769217474e0585b Mon Sep 17 00:00:00 2001 From: Adit Sarfaty Date: Sun, 1 Apr 2018 08:58:23 +0300 Subject: [PATCH] Remove unsupported VPN algorithms The NSX implementation will not support some algorithms Those were not yet used by the vmware_nsx anyway. Change-Id: Ib832363cdca96780dec76fab01b81bf11e60435f --- vmware_nsxlib/v3/vpn_ipsec.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/vmware_nsxlib/v3/vpn_ipsec.py b/vmware_nsxlib/v3/vpn_ipsec.py index 2592ceb6..78348c79 100644 --- a/vmware_nsxlib/v3/vpn_ipsec.py +++ b/vmware_nsxlib/v3/vpn_ipsec.py @@ -32,9 +32,6 @@ class EncryptionAlgorithmTypes(object): """Supported encryption algorithms (NSX default is GCM)""" ENCRYPTION_ALGORITHM_128 = 'AES_128' ENCRYPTION_ALGORITHM_256 = 'AES_256' - ENCRYPTION_ALGORITHM_GCM128 = 'AES_GCM_128' # only with IKE_V2 - ENCRYPTION_ALGORITHM_GCM192 = 'AES_GCM_192' # only with IKE_V2 - ENCRYPTION_ALGORITHM_GCM256 = 'AES_GCM_256' # only with IKE_V2 class DigestAlgorithmTypes(object):