mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00

Add explicit array bounds to the function prototypes for the parameters that didn't already get handled by the conversion to use chacha_state: - chacha_block_*(): Change 'u8 *out' or 'u8 *stream' to u8 out[CHACHA_BLOCK_SIZE]. - hchacha_block_*(): Change 'u32 *out' or 'u32 *stream' to u32 out[HCHACHA_OUT_WORDS]. - chacha_init(): Change 'const u32 *key' to 'const u32 key[CHACHA_KEY_WORDS]'. Change 'const u8 *iv' to 'const u8 iv[CHACHA_IV_SIZE]'. No functional changes. This just makes it clear when fixed-size arrays are expected. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
30 lines
812 B
C
30 lines
812 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* ChaCha and HChaCha functions (MIPS optimized)
|
|
*
|
|
* Copyright (C) 2019 Linaro, Ltd. <ard.biesheuvel@linaro.org>
|
|
*/
|
|
|
|
#include <crypto/chacha.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
|
|
asmlinkage void chacha_crypt_arch(struct chacha_state *state,
|
|
u8 *dst, const u8 *src,
|
|
unsigned int bytes, int nrounds);
|
|
EXPORT_SYMBOL(chacha_crypt_arch);
|
|
|
|
asmlinkage void hchacha_block_arch(const struct chacha_state *state,
|
|
u32 out[HCHACHA_OUT_WORDS], int nrounds);
|
|
EXPORT_SYMBOL(hchacha_block_arch);
|
|
|
|
bool chacha_is_arch_optimized(void)
|
|
{
|
|
return true;
|
|
}
|
|
EXPORT_SYMBOL(chacha_is_arch_optimized);
|
|
|
|
MODULE_DESCRIPTION("ChaCha and HChaCha functions (MIPS optimized)");
|
|
MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>");
|
|
MODULE_LICENSE("GPL v2");
|