Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.14-rc2 14 lines 355 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef ASM_ARM_CRYPTO_SHA1_H 3#define ASM_ARM_CRYPTO_SHA1_H 4 5#include <linux/crypto.h> 6#include <crypto/sha1.h> 7 8extern int sha1_update_arm(struct shash_desc *desc, const u8 *data, 9 unsigned int len); 10 11extern int sha1_finup_arm(struct shash_desc *desc, const u8 *data, 12 unsigned int len, u8 *out); 13 14#endif