git: 4b86550923cf - main - ifconfig: add AES-GCMP RSN OUI decoding
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 02 Mar 2025 01:35:36 UTC
The branch main has been updated by adrian: URL: https://cgit.FreeBSD.org/src/commit/?id=4b86550923cfb226a65b7d48c661654bd0a240cc commit 4b86550923cfb226a65b7d48c661654bd0a240cc Author: Adrian Chadd <adrian@FreeBSD.org> AuthorDate: 2025-03-01 01:18:40 +0000 Commit: Adrian Chadd <adrian@FreeBSD.org> CommitDate: 2025-03-02 01:35:08 +0000 ifconfig: add AES-GCMP RSN OUI decoding This decodes the AES-GCMP OUI in ifconfig, ifconfig list sta, ifconfig list scan, etc. Differential Revision: https://reviews.freebsd.org/D49187 Reviewed by: bz --- sbin/ifconfig/ifieee80211.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sbin/ifconfig/ifieee80211.c b/sbin/ifconfig/ifieee80211.c index 9f66281931c0..656e71e325cd 100644 --- a/sbin/ifconfig/ifieee80211.c +++ b/sbin/ifconfig/ifieee80211.c @@ -3136,6 +3136,8 @@ rsn_cipher(const u_int8_t *sel) return "AES-CCMP"; case RSN_SEL(RSN_CSE_WRAP): return "AES-OCB"; + case RSN_SEL(RSN_CSE_GCMP_128): + return "AES-GCMP"; } return "?"; #undef WPA_SEL