We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4b4959 commit 32529fcCopy full SHA for 32529fc
src/WiFi101.h
@@ -53,10 +53,14 @@ typedef enum {
53
} wl_status_t;
54
55
/* Encryption modes */
56
-enum wl_enc_type { /* Values map to 802.11 encryption suites... */
+enum wl_enc_type { /* Values map to 802.11 Cipher Algorithm Identifier */
57
ENC_TYPE_WEP = M2M_WIFI_SEC_WEP,
58
ENC_TYPE_TKIP = M2M_WIFI_SEC_WPA_PSK,
59
+ ENC_TYPE_WPA = ENC_TYPE_TKIP,
60
ENC_TYPE_CCMP = M2M_WIFI_SEC_802_1X,
61
+ ENC_TYPE_WPA2 = ENC_TYPE_CCMP,
62
+ ENC_TYPE_GCMP = 6,
63
+ ENC_TYPE_WPA3 = ENC_TYPE_GCMP,
64
/* ... except these two, 7 and 8 are reserved in 802.11-2007 */
65
ENC_TYPE_NONE = M2M_WIFI_SEC_OPEN,
66
ENC_TYPE_AUTO = M2M_WIFI_SEC_INVALID
0 commit comments