License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6-block.git] / arch / arm / crypto / sha256_glue.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
f2f770d7
ST
2#ifndef _CRYPTO_SHA256_GLUE_H
3#define _CRYPTO_SHA256_GLUE_H
4
5#include <linux/crypto.h>
f2f770d7
ST
6
7extern struct shash_alg sha256_neon_algs[2];
8
b59e2ae3
AB
9int crypto_sha256_arm_update(struct shash_desc *desc, const u8 *data,
10 unsigned int len);
f2f770d7 11
b59e2ae3
AB
12int crypto_sha256_arm_finup(struct shash_desc *desc, const u8 *data,
13 unsigned int len, u8 *hash);
f2f770d7
ST
14
15#endif /* _CRYPTO_SHA256_GLUE_H */