diff mbox series

[10/17] hwsim: add remaining ciphers to supported list

Message ID 20221101201747.143379-10-prestwoj@gmail.com (mailing list archive)
State Accepted, archived
Headers show
Series [01/17] wiphy: add wiphy_get_supported_ciphers | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
prestwoj/iwd-ci-gitlint success GitLint

Commit Message

James Prestwood Nov. 1, 2022, 8:17 p.m. UTC
This list was not updated when adding the new ciphers which prevented
these ciphers from being disabled.
---
 tools/hwsim.c | 6 ++++++
 1 file changed, 6 insertions(+)

Comments

Denis Kenzior Nov. 1, 2022, 8:51 p.m. UTC | #1
Hi James,

On 11/1/22 15:17, James Prestwood wrote:
> This list was not updated when adding the new ciphers which prevented
> these ciphers from being disabled.
> ---
>   tools/hwsim.c | 6 ++++++
>   1 file changed, 6 insertions(+)
> 

Applied, thanks.

Regards,
-Denis
diff mbox series

Patch

diff --git a/tools/hwsim.c b/tools/hwsim.c
index 0ace4c0e..7afbe4e7 100644
--- a/tools/hwsim.c
+++ b/tools/hwsim.c
@@ -176,6 +176,12 @@  static const uint32_t hwsim_supported_ciphers[] = {
 	CRYPTO_CIPHER_TKIP,
 	CRYPTO_CIPHER_CCMP,
 	CRYPTO_CIPHER_BIP_CMAC,
+	CRYPTO_CIPHER_GCMP,
+	CRYPTO_CIPHER_GCMP_256,
+	CRYPTO_CIPHER_CCMP_256,
+	CRYPTO_CIPHER_BIP_GMAC,
+	CRYPTO_CIPHER_BIP_GMAC_256,
+	CRYPTO_CIPHER_BIP_CMAC_256,
 };
 static uint32_t hwsim_ciphers[L_ARRAY_SIZE(hwsim_supported_ciphers)];
 static int hwsim_num_ciphers = 0;