Explorar el Código

Fixes #15316: Fix selection of 3DES encryption for IKE & IPSec proposals

Jeremy Stretch hace 2 años
padre
commit
55ef24d56d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      netbox/vpn/choices.py

+ 1 - 1
netbox/vpn/choices.py

@@ -124,7 +124,7 @@ class EncryptionAlgorithmChoices(ChoiceSet):
         (ENCRYPTION_AES256_CBC, '256-bit AES (CBC)'),
         (ENCRYPTION_AES256_GCM, '256-bit AES (GCM)'),
         (ENCRYPTION_3DES, '3DES'),
-        (ENCRYPTION_3DES, 'DES'),
+        (ENCRYPTION_DES, 'DES'),
     )