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
This commit is contained in:
Adit Sarfaty 2018-04-01 08:58:23 +03:00
parent d1a543bca0
commit 704cfa2ed1
1 changed files with 0 additions and 3 deletions

View File

@ -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):