blob: 758db3e9ff0a93e69573d0c86e3dafdab92efbde [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Jussi Kivilinna60468252014-07-29 17:14:14 +01002#ifndef ASM_ARM_CRYPTO_SHA1_H
3#define ASM_ARM_CRYPTO_SHA1_H
4
5#include <linux/crypto.h>
6#include <crypto/sha.h>
7
8extern int sha1_update_arm(struct shash_desc *desc, const u8 *data,
9 unsigned int len);
10
Ard Biesheuvel90451d62015-04-09 12:55:39 +020011extern int sha1_finup_arm(struct shash_desc *desc, const u8 *data,
12 unsigned int len, u8 *out);
13
Jussi Kivilinna60468252014-07-29 17:14:14 +010014#endif