blob: 0a0b35fe9b964c732ff633f5de945ee6ccad81ee [file] [log] [blame]
Qu Wenruo565a4142020-06-24 18:02:48 +02001// SPDX-License-Identifier: GPL-2.0+
2
Jens Wiklander6ba08b32023-05-22 14:22:36 +02003#include <asm/unaligned.h>
Qu Wenruo565a4142020-06-24 18:02:48 +02004#include <linux/xxhash.h>
Qu Wenruo565a4142020-06-24 18:02:48 +02005#include <linux/types.h>
6#include <u-boot/sha256.h>
Qu Wenruo16171652021-12-27 14:12:08 +08007#include <u-boot/blake2.h>
Qu Wenruo565a4142020-06-24 18:02:48 +02008#include <u-boot/crc.h>
9
10static u32 btrfs_crc32c_table[256];
11
12void btrfs_hash_init(void)
13{
14 static int inited = 0;
15
16 if (!inited) {
17 crc32c_init(btrfs_crc32c_table, 0x82F63B78);
18 inited = 1;
19 }
20}
21
22int hash_sha256(const u8 *buf, size_t length, u8 *out)
23{
24 sha256_context ctx;
25
26 sha256_starts(&ctx);
27 sha256_update(&ctx, buf, length);
28 sha256_finish(&ctx, out);
29
30 return 0;
31}
32
33int hash_xxhash(const u8 *buf, size_t length, u8 *out)
34{
35 u64 hash;
36
37 hash = xxh64(buf, length, 0);
38 put_unaligned_le64(hash, out);
39
40 return 0;
41}
42
Qu Wenruo16171652021-12-27 14:12:08 +080043/* We use the full CSUM_SIZE(32) for BLAKE2B */
44#define BTRFS_BLAKE2_HASH_SIZE 32
45int hash_blake2(const u8 *buf, size_t length, u8 *out)
46{
47 blake2b_state S;
48
49 blake2b_init(&S, BTRFS_BLAKE2_HASH_SIZE);
50 blake2b_update(&S, buf, length);
51 blake2b_final(&S, out, BTRFS_BLAKE2_HASH_SIZE);
52
53 return 0;
54}
55
Qu Wenruo565a4142020-06-24 18:02:48 +020056int hash_crc32c(const u8 *buf, size_t length, u8 *out)
57{
58 u32 crc;
59
60 crc = crc32c_cal((u32)~0, (char *)buf, length, btrfs_crc32c_table);
61 put_unaligned_le32(~crc, out);
62
63 return 0;
64}
65
66u32 crc32c(u32 seed, const void * data, size_t len)
67{
68 return crc32c_cal(seed, data, len, btrfs_crc32c_table);
69}