diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-27 22:59:00 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-02-28 00:54:37 +0100 |
commit | 5bcc549edeaeaa767d77a68b33751e834d467c34 (patch) | |
tree | 55d8f3d6eec096a58e5099b77d223b5d31ace095 /interface-definitions | |
parent | 857294427afba3259e683f2360c735f0f4be32b6 (diff) | |
download | vyos-1x-5bcc549edeaeaa767d77a68b33751e834d467c34.tar.gz vyos-1x-5bcc549edeaeaa767d77a68b33751e834d467c34.zip |
macsec: T3368: add support for gcm-aes-256 cipher
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/interfaces-macsec.xml.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/interface-definitions/interfaces-macsec.xml.in b/interface-definitions/interfaces-macsec.xml.in index 94d78c6dd..3f2e5bb69 100644 --- a/interface-definitions/interfaces-macsec.xml.in +++ b/interface-definitions/interfaces-macsec.xml.in @@ -28,14 +28,18 @@ <properties> <help>Cipher suite used</help> <completionHelp> - <list>gcm-aes-128</list> + <list>gcm-aes-128 gcm-aes-256</list> </completionHelp> <valueHelp> <format>gcm-aes-128</format> <description>Galois/Counter Mode of AES cipher with 128-bit key (default)</description> </valueHelp> + <valueHelp> + <format>gcm-aes-256</format> + <description>Galois/Counter Mode of AES cipher with 256-bit key</description> + </valueHelp> <constraint> - <regex>(gcm-aes-128)</regex> + <regex>^(gcm-aes-128|gcm-aes-256)$</regex> </constraint> </properties> </leafNode> |