diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-09-30 20:30:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-30 20:30:00 +0200 |
commit | 9a4eab94d76c2a5609cc84a5fb6f73561cc4678b (patch) | |
tree | 8281a110b487367bda223373077e9e7c6e34686d /interface-definitions/interfaces-openvpn.xml | |
parent | 41aa7bc4c804c0eba36ba6ec10b49b303e8c1df4 (diff) | |
parent | 9a4f89ad6752d9ad859ae124c97e3e4657f81aad (diff) | |
download | vyos-1x-9a4eab94d76c2a5609cc84a5fb6f73561cc4678b.tar.gz vyos-1x-9a4eab94d76c2a5609cc84a5fb6f73561cc4678b.zip |
Merge pull request #143 from vindenesen/current-T1688
[OpenVPN]: T1688: Add support for using encryption aes128gcm, aes192gcm and aes25gcm
Diffstat (limited to 'interface-definitions/interfaces-openvpn.xml')
-rw-r--r-- | interface-definitions/interfaces-openvpn.xml | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/interface-definitions/interfaces-openvpn.xml b/interface-definitions/interfaces-openvpn.xml index fb2564cbd..365d80558 100644 --- a/interface-definitions/interfaces-openvpn.xml +++ b/interface-definitions/interfaces-openvpn.xml @@ -106,7 +106,7 @@ <properties> <help>Data Encryption Algorithm</help> <completionHelp> - <list>des 3des bf128 bf256 aes128 aes192 aes256</list> + <list>des 3des bf128 bf256 aes128 aes128gcm aes192 aes192gcm aes256 aes256gcm</list> </completionHelp> <valueHelp> <format>des</format> @@ -126,18 +126,30 @@ </valueHelp> <valueHelp> <format>aes128</format> - <description>AES algorithm with 128-bit key</description> + <description>AES algorithm with 128-bit key CBC</description> + </valueHelp> + <valueHelp> + <format>aes128gcm</format> + <description>AES algorithm with 128-bit key GCM</description> </valueHelp> <valueHelp> <format>aes192</format> - <description>AES algorithm with 192-bit key</description> + <description>AES algorithm with 192-bit key CBC</description> + </valueHelp> + <valueHelp> + <format>aes192gcm</format> + <description>AES algorithm with 192-bit key GCM</description> </valueHelp> <valueHelp> <format>aes256</format> - <description>AES algorithm with 256-bit key</description> + <description>AES algorithm with 256-bit key CBC</description> + </valueHelp> + <valueHelp> + <format>aes256gcm</format> + <description>AES algorithm with 256-bit key GCM</description> </valueHelp> <constraint> - <regex>(des|3des|bf128|bf256|aes128|aes192|aes256)</regex> + <regex>(des|3des|bf128|bf256|aes128|aes128gcm|aes192|aes192gcm|aes256|aes256gcm)</regex> </constraint> </properties> </leafNode> |