diff options
author | Mattias Andrée <maandree@kth.se> | 2022-01-07 19:52:35 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-01-07 20:21:49 +0100 |
commit | 6adc0e6c6c378b5438533bdf55636ef049c1b956 (patch) | |
tree | ea55a4f54d7d190a1634c0a7ec8054fa2cdf47fd /libblake_blake512_init.c | |
parent | libblake_decode_hex: verify input (diff) | |
download | libblake-6adc0e6c6c378b5438533bdf55636ef049c1b956.tar.gz libblake-6adc0e6c6c378b5438533bdf55636ef049c1b956.tar.bz2 libblake-6adc0e6c6c378b5438533bdf55636ef049c1b956.tar.xz |
Add BLAKE2b and BLAKE2s + add salt support to BLAKE + m
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libblake_blake512_init.c')
-rw-r--r-- | libblake_blake512_init.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/libblake_blake512_init.c b/libblake_blake512_init.c index 85d011f..e45fb9e 100644 --- a/libblake_blake512_init.c +++ b/libblake_blake512_init.c @@ -4,14 +4,5 @@ void libblake_blake512_init(struct libblake_blake512_state *state) { - state->b.h[0] = UINT_LEAST64_C(0x6A09E667F3BCC908); - state->b.h[1] = UINT_LEAST64_C(0xBB67AE8584CAA73B); - state->b.h[2] = UINT_LEAST64_C(0x3C6EF372FE94F82B); - state->b.h[3] = UINT_LEAST64_C(0xA54FF53A5F1D36F1); - state->b.h[4] = UINT_LEAST64_C(0x510E527FADE682D1); - state->b.h[5] = UINT_LEAST64_C(0x9B05688C2B3E6C1F); - state->b.h[6] = UINT_LEAST64_C(0x1F83D9ABFB41BD6B); - state->b.h[7] = UINT_LEAST64_C(0x5BE0CD19137E2179); - memset(state->b.s, 0, sizeof(state->b.s)); - memset(state->b.t, 0, sizeof(state->b.t)); + libblake_blake512_init2(state, NULL); } |