Dash Core Source Documentation (0.16.0.1)
Find detailed information regarding the Dash Core source code.
sph_cubehash.h
Go to the documentation of this file.
void sph_cubehash384_close(void *cc, void *dst)
Terminate the current CubeHash-384 computation and output the result into the provided buffer...
Definition: cubehash.c:680
Basic type definitions.
sph_cubehash_context sph_cubehash512_context
Type for a CubeHash-512 context (identical to the common context).
Definition: sph_cubehash.h:103
void sph_cubehash512_close(void *cc, void *dst)
Terminate the current CubeHash-512 computation and output the result into the provided buffer...
Definition: cubehash.c:709
void sph_cubehash384_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: cubehash.c:687
void sph_cubehash512(void *cc, const void *data, size_t len)
Process some data bytes.
Definition: cubehash.c:702
void sph_cubehash256_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: cubehash.c:658
void sph_cubehash224_close(void *cc, void *dst)
Terminate the current CubeHash-224 computation and output the result into the provided buffer...
Definition: cubehash.c:622
void sph_cubehash256_close(void *cc, void *dst)
Terminate the current CubeHash-256 computation and output the result into the provided buffer...
Definition: cubehash.c:651
sph_cubehash_context sph_cubehash384_context
Type for a CubeHash-384 context (identical to the common context).
Definition: sph_cubehash.h:98
void sph_cubehash384(void *cc, const void *data, size_t len)
Process some data bytes.
Definition: cubehash.c:673
void sph_cubehash512_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: cubehash.c:716
sph_cubehash_context sph_cubehash224_context
Type for a CubeHash-224 context (identical to the common context).
Definition: sph_cubehash.h:88
void sph_cubehash256(void *cc, const void *data, size_t len)
Process some data bytes.
Definition: cubehash.c:644
sph_cubehash_context sph_cubehash256_context
Type for a CubeHash-256 context (identical to the common context).
Definition: sph_cubehash.h:93
void sph_cubehash224(void *cc, const void *data, size_t len)
Process some data bytes.
Definition: cubehash.c:615
void sph_cubehash224_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: cubehash.c:629
This structure is a context for CubeHash computations: it contains the intermediate values and some d...
Definition: sph_cubehash.h:77