From 9a1f977e39d8e9fcb6a9cb2a612f4743e802221d Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Fri, 10 Nov 2023 15:47:08 +0100 Subject: Kernel Style: Change uint*_t -> u* --- kernel/crypto/ChaCha20/chacha20.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kernel/crypto/ChaCha20/chacha20.c') diff --git a/kernel/crypto/ChaCha20/chacha20.c b/kernel/crypto/ChaCha20/chacha20.c index 5bf7aa2..0f74844 100644 --- a/kernel/crypto/ChaCha20/chacha20.c +++ b/kernel/crypto/ChaCha20/chacha20.c @@ -6,10 +6,10 @@ a += b, d ^= a, d = ROTL(d, 8), c += d, b ^= c, b = ROTL(b, 7)) #define ROUNDS 20 -void chacha_block(uint32_t out[16], uint32_t const in[16]) +void chacha_block(u32 out[16], u32 const in[16]) { int i; - uint32_t x[16]; + u32 x[16]; for (i = 0; i < 16; ++i) x[i] = in[i]; -- cgit v1.2.3