diff options
| author | Takashi Iwai <tiwai@suse.de> | 2026-04-09 08:00:53 +0300 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2026-04-09 08:00:53 +0300 |
| commit | 00afb1811fa638dacf125dd1c343b7a181624dfd (patch) | |
| tree | 68abc175005f32fb44faf215091af0a0e7a41985 /lib | |
| parent | 082c192c0dd03f685514c9ce2eb0a80fd28e2175 (diff) | |
| parent | 6b6f7263d626886a96fce6352f94dfab7a24c339 (diff) | |
| download | linux-00afb1811fa638dacf125dd1c343b7a181624dfd.tar.xz | |
Merge tag 'asoc-fix-v7.0-rc7' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v7.0
A somewhat larger set of fixes than I'd like unfortunatey, not from any
one place but rather spread out over different drivers. We've got a
bunch more fixes for the SDCA interrupt support, several relatively
minor SOF fixes, a few more driver specific fixes and a couple more AMD
quirks.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/crypto/chacha-block-generic.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/crypto/chacha-block-generic.c b/lib/crypto/chacha-block-generic.c index 77f68de71066..4a6d627580cb 100644 --- a/lib/crypto/chacha-block-generic.c +++ b/lib/crypto/chacha-block-generic.c @@ -87,6 +87,8 @@ void chacha_block_generic(struct chacha_state *state, &out[i * sizeof(u32)]); state->x[12]++; + + chacha_zeroize_state(&permuted_state); } EXPORT_SYMBOL(chacha_block_generic); @@ -110,5 +112,7 @@ void hchacha_block_generic(const struct chacha_state *state, memcpy(&out[0], &permuted_state.x[0], 16); memcpy(&out[4], &permuted_state.x[12], 16); + + chacha_zeroize_state(&permuted_state); } EXPORT_SYMBOL(hchacha_block_generic); |
