diff options
author | Mattias Andrée <maandree@kth.se> | 2022-02-20 14:29:53 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-02-20 14:29:53 +0100 |
commit | 586026a29b9d069cbfea0c5de8f22f2383356ecc (patch) | |
tree | ecfdb871b9ae52a7e584d7c52906c4db099d1ea3 | |
parent | add todo (diff) | |
download | libblake-586026a29b9d069cbfea0c5de8f22f2383356ecc.tar.gz libblake-586026a29b9d069cbfea0c5de8f22f2383356ecc.tar.bz2 libblake-586026a29b9d069cbfea0c5de8f22f2383356ecc.tar.xz |
Add block size macro constants
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | libblake.h | 60 |
1 files changed, 60 insertions, 0 deletions
@@ -104,6 +104,34 @@ libblake_decode_hex(const char *data, size_t n, void *out, int *validp); #define LIBBLAKE_BLAKE512_OUTPUT_SIZE (512 / 8) /** + * The block size used by BLAKE224; it will only + * process a multiple of this number of bytes in + * each call to `libblake_blake224_update` + */ +#define LIBBLAKE_BLAKE224_BLOCK_SIZE 64 + +/** + * The block size used by BLAKE256; it will only + * process a multiple of this number of bytes in + * each call to `libblake_blake256_update` + */ +#define LIBBLAKE_BLAKE256_BLOCK_SIZE 64 + +/** + * The block size used by BLAKE384; it will only + * process a multiple of this number of bytes in + * each call to `libblake_blake384_update` + */ +#define LIBBLAKE_BLAKE384_BLOCK_SIZE 128 + +/** + * The block size used by BLAKE512; it will only + * process a multiple of this number of bytes in + * each call to `libblake_blake512_update` + */ +#define LIBBLAKE_BLAKE512_BLOCK_SIZE 128 + +/** * State for BLAKEs hashing (BLAKE224 and BLAKE256) * * This structure should be considered internal @@ -506,6 +534,22 @@ libblake_blake512_digest(struct libblake_blake512_state *state, void *data, size /*********************************** BLAKE2 ***********************************/ /** + * The block size used by BLAKE2s; it will only + * process a multiple of this number of bytes in + * each call to `libblake_blake2s_update` or + * `libblake_blake2s_force_update` + */ +#define LIBBLAKE_BLAKE2S_BLOCK_SIZE 64 + +/** + * The block size used by BLAKE2b; it will only + * process a multiple of this number of bytes in + * each call to `libblake_blake2b_update` or + * `libblake_blake2b_force_update` + */ +#define LIBBLAKE_BLAKE2B_BLOCK_SIZE 128 + +/** * BLAKE2s hashing parameters */ struct libblake_blake2s_params { @@ -1008,6 +1052,22 @@ libblake_blake2b_digest(struct libblake_blake2b_state *state, void *data, size_t /*********************************** BLAKE2X (!!DRAFT!!) ***********************************/ /** + * The block size used by BLAKE2Xs; it will only + * process a multiple of this number of bytes in + * each call to `libblake_blake2xs_update` or + * `libblake_blake2xs_force_update` + */ +#define LIBBLAKE_BLAKE2XS_BLOCK_SIZE 64 + +/** + * The block size used by BLAKE2Xb; it will only + * process a multiple of this number of bytes in + * each call to `libblake_blake2xb_update` or + * `libblake_blake2xb_force_update` + */ +#define LIBBLAKE_BLAKE2XB_BLOCK_SIZE 128 + +/** * BLAKE2Xs hashing parameters */ struct libblake_blake2xs_params { |