xref: /linux/tools/perf/util/sha1.h (revision 34c3f1e346e7b2b8a420b1ea341b341525baf92b)
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