We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4781c40 + 02542ac commit 32d1696Copy full SHA for 32d1696
libraries/WiFi/src/utility/wl_definitions.h
@@ -60,10 +60,14 @@ typedef enum {
60
} wl_status_t;
61
62
/* Encryption modes */
63
-enum wl_enc_type { /* Values map to 802.11 encryption suites... */
+enum wl_enc_type { /* Values map to 802.11 Cipher Algorithm Identifier */
64
ENC_TYPE_WEP = 5,
65
ENC_TYPE_TKIP = 2,
66
+ ENC_TYPE_WPA = ENC_TYPE_TKIP,
67
ENC_TYPE_CCMP = 4,
68
+ ENC_TYPE_WPA2 = ENC_TYPE_CCMP,
69
+ ENC_TYPE_GCMP = 6,
70
+ ENC_TYPE_WPA3 = ENC_TYPE_GCMP,
71
/* ... except these two, 7 and 8 are reserved in 802.11-2007 */
72
ENC_TYPE_NONE = 7,
73
ENC_TYPE_UNKNOWN = 9,
0 commit comments