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