We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b79e3a commit 0aa5c88Copy full SHA for 0aa5c88
ext/hash/blake3/upstream_blake3/c/blake3.h
@@ -44,6 +44,7 @@ typedef struct {
44
uint64_t chunk_counter;
45
uint8_t buf[BLAKE3_BLOCK_LEN];
46
uint8_t buf_len;
47
+ uint8_t padding_1[5];
48
uint8_t blocks_compressed;
49
uint8_t flags;
50
} blake3_chunk_state;
@@ -58,6 +59,7 @@ typedef struct {
58
59
// don't know whether more input is coming. This is different from how the
60
// reference implementation does things.
61
uint8_t cv_stack[(BLAKE3_MAX_DEPTH + 1) * BLAKE3_OUT_LEN];
62
+ uint8_t padding_2[7];
63
} blake3_hasher;
64
65
BLAKE3_API const char *blake3_version(void);
0 commit comments