xref: /linux/tools/perf/util/sha1.h (revision eed0e3d305530066b4fc5370107cff8ef1a0d229)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #include <linux/types.h>
3 
4 #define SHA1_DIGEST_SIZE 20
5 
6 void sha1(const void *data, size_t len, u8 out[SHA1_DIGEST_SIZE]);
7