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 |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
prestwoj/iwd-ci-gitlint | success | GitLint |
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 --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;