The branch main has been updated by adrian:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=4b86550923cfb226a65b7d48c661654bd0a240cc

commit 4b86550923cfb226a65b7d48c661654bd0a240cc
Author:     Adrian Chadd <adr...@freebsd.org>
AuthorDate: 2025-03-01 01:18:40 +0000
Commit:     Adrian Chadd <adr...@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

Reply via email to