mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
ie: add ie_rsn_cipher_suite_to_string
This commit is contained in:
parent
150856c315
commit
8040826079
24
src/ie.c
24
src/ie.c
@ -437,6 +437,30 @@ uint32_t ie_rsn_cipher_suite_to_cipher(enum ie_rsn_cipher_suite suite)
|
||||
}
|
||||
}
|
||||
|
||||
const char *ie_rsn_cipher_suite_to_string(enum ie_rsn_cipher_suite suite)
|
||||
{
|
||||
switch (suite) {
|
||||
case IE_RSN_CIPHER_SUITE_CCMP:
|
||||
return "CCMP-128";
|
||||
case IE_RSN_CIPHER_SUITE_TKIP:
|
||||
return "TKIP";
|
||||
case IE_RSN_CIPHER_SUITE_WEP40:
|
||||
return "WEP-40";
|
||||
case IE_RSN_CIPHER_SUITE_WEP104:
|
||||
return "WEP-104";
|
||||
case IE_RSN_CIPHER_SUITE_BIP_CMAC:
|
||||
return "BIP-CMAC-128";
|
||||
case IE_RSN_CIPHER_SUITE_GCMP:
|
||||
return "GCMP-128";
|
||||
case IE_RSN_CIPHER_SUITE_NO_GROUP_TRAFFIC:
|
||||
return "NO-TRAFFIC";
|
||||
case IE_RSN_CIPHER_SUITE_USE_GROUP_CIPHER:
|
||||
break;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* 802.11, Section 8.4.2.27.2 */
|
||||
static bool ie_parse_cipher_suite(const uint8_t *data,
|
||||
enum ie_rsn_cipher_suite *out)
|
||||
|
1
src/ie.h
1
src/ie.h
@ -587,6 +587,7 @@ unsigned char *ie_tlv_builder_finalize(struct ie_tlv_builder *builder,
|
||||
size_t *out_len);
|
||||
|
||||
uint32_t ie_rsn_cipher_suite_to_cipher(enum ie_rsn_cipher_suite suite);
|
||||
const char *ie_rsn_cipher_suite_to_string(enum ie_rsn_cipher_suite suite);
|
||||
|
||||
int ie_parse_rsne(struct ie_tlv_iter *iter, struct ie_rsn_info *info);
|
||||
int ie_parse_rsne_from_data(const uint8_t *data, size_t len,
|
||||
|
Loading…
Reference in New Issue
Block a user