29 extern const cx_hash_info_t cx_blake2b_info;
31 WARN_UNUSED_RESULT cx_err_t cx_blake2b_update(cx_blake2b_t *ctx,
const uint8_t *data,
size_t len);
33 cx_err_t cx_blake2b_final(cx_blake2b_t *ctx,
uint8_t *digest);
34 size_t cx_blake2b_get_output_size(
const cx_blake2b_t *ctx);
40 uint8_t buffer[BLAKE2B_OUTBYTES];
41 uint8_t block1[BLAKE2B_BLOCKBYTES];
43 typedef struct cx_xblake_s cx_xblake_t;
BLAKE2 crypographic hash function.