Skip to content

Commit

Permalink
luci-mod-network: Present GCMP (AES) options in wifi
Browse files Browse the repository at this point in the history
And include ccmp-256 bit

Signed-off-by: Paul Donald <[email protected]>
  • Loading branch information
systemcrash committed Jul 17, 2024
1 parent 3bf3c0a commit 46e8c0b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1238,6 +1238,9 @@ return view.extend({
o.depends('encryption', 'psk-mixed');
o.value('auto', _('auto'));
o.value('ccmp', _('Force CCMP (AES)'));
o.value('ccmp256', _('Force CCMP-256 (AES)'));
o.value('gcmp', _('Force GCMP (AES)'));
o.value('gcmp256', _('Force GCMP-256 (AES)'));
o.value('tkip', _('Force TKIP'));
o.value('tkip+ccmp', _('Force TKIP and CCMP (AES)'));
o.write = ss.children.filter(function(o) { return o.option == 'encryption' })[0].write;
Expand Down

0 comments on commit 46e8c0b

Please sign in to comment.