From 802e9e59162f0cd1d156b8530ed5e92cf1a16a4a Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 1 Nov 2022 13:17:40 -0700 Subject: [PATCH] hwsim: add remaining ciphers to supported list 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(+) 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;