Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
fork
Configure Feed
Select the types of activity you want to include in your feed.
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * OpenSSL/Cryptogams accelerated Poly1305 transform for MIPS
4 *
5 * Copyright (C) 2019 Linaro Ltd. <ard.biesheuvel@linaro.org>
6 */
7
8asmlinkage void poly1305_block_init(struct poly1305_block_state *state,
9 const u8 raw_key[POLY1305_BLOCK_SIZE]);
10asmlinkage void poly1305_blocks(struct poly1305_block_state *state,
11 const u8 *src, u32 len, u32 hibit);
12asmlinkage void poly1305_emit(const struct poly1305_state *state,
13 u8 digest[POLY1305_DIGEST_SIZE],
14 const u32 nonce[4]);