Merge "Remove unsupported VPN algorithms"

This commit is contained in:
Zuul 2018-04-09 05:42:25 +00:00 committed by Gerrit Code Review
commit b8951d90b7
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):