Dash Core Source Documentation (0.16.0.1)
Find detailed information regarding the Dash Core source code.
sph_blake.h
Go to the documentation of this file.
void sph_blake224_close(void *cc, void *dst)
Terminate the current BLAKE-224 computation and output the result into the provided buffer...
Definition: blake.c:1014
#define H(x)
This structure is a context for BLAKE-224 and BLAKE-256 computations: it contains the intermediate va...
Definition: sph_blake.h:81
Basic type definitions.
void sph_blake256(void *cc, const void *data, size_t len)
Process some data bytes.
Definition: blake.c:1036
void sph_blake256_close(void *cc, void *dst)
Terminate the current BLAKE-256 computation and output the result into the provided buffer...
Definition: blake.c:1043
void sph_blake224(void *cc, const void *data, size_t len)
Process some data bytes.
Definition: blake.c:1007
sph_blake_small_context sph_blake256_context
This structure is a context for BLAKE-256 computations.
Definition: sph_blake.h:101
sph_blake_small_context sph_blake224_context
This structure is a context for BLAKE-224 computations.
Definition: sph_blake.h:95
void sph_blake224_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst)
Add a few additional bits (0 to 7) to the current computation, then terminate it and output the resul...
Definition: blake.c:1021
void sph_blake256_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst)
Add a few additional bits (0 to 7) to the current computation, then terminate it and output the resul...
Definition: blake.c:1050