ReactOS 0.4.16-dev-338-g34e76ad
|
Go to the source code of this file.
Macros | |
#define | G(r, i, a, b, c, d) |
#define | ROUND(r) |
Functions | |
static int | blake2b_update (blake2b_state *S, const void *in, size_t inlen) |
static void | blake2b_set_lastnode (blake2b_state *S) |
static int | blake2b_is_lastblock (const blake2b_state *S) |
static void | blake2b_set_lastblock (blake2b_state *S) |
static void | blake2b_increment_counter (blake2b_state *S, const uint64_t inc) |
static void | blake2b_init0 (blake2b_state *S) |
static void | blake2b_init_param (blake2b_state *S, const blake2b_param *P) |
static void | blake2b_init (blake2b_state *S, size_t outlen) |
static void | blake2b_compress (blake2b_state *S, const uint8_t block[BLAKE2B_BLOCKBYTES]) |
static int | blake2b_final (blake2b_state *S, void *out, size_t outlen) |
void | blake2b (void *out, size_t outlen, const void *in, size_t inlen) |
Variables | |
static const uint64_t | blake2b_IV [8] |
static const uint8_t | blake2b_sigma [12][16] |
Definition at line 117 of file blake2b-ref.c.
Definition at line 129 of file blake2b-ref.c.
Definition at line 237 of file blake2b-ref.c.
Referenced by calc_superblock_checksum(), calc_thread_main(), calc_tree_checksum(), check_sector_csum(), check_superblock_checksum(), check_tree_checksum(), get_sector_csum(), and get_tree_checksum().
|
static |
Definition at line 141 of file blake2b-ref.c.
Referenced by blake2b_final(), and blake2b_update().
|
static |
Definition at line 212 of file blake2b-ref.c.
Referenced by blake2b().
|
static |
Definition at line 66 of file blake2b-ref.c.
Referenced by blake2b_final(), and blake2b_update().
|
static |
Definition at line 97 of file blake2b-ref.c.
Referenced by blake2b().
|
static |
|
static |
Definition at line 81 of file blake2b-ref.c.
Referenced by blake2b_init().
|
static |
Definition at line 54 of file blake2b-ref.c.
Referenced by blake2b_final().
|
static |
|
static |
Definition at line 48 of file blake2b-ref.c.
Referenced by blake2b_set_lastblock().
|
static |
Definition at line 185 of file blake2b-ref.c.
Referenced by blake2b().
Definition at line 22 of file blake2b-ref.c.
Referenced by blake2b_compress(), and blake2b_init0().
Definition at line 30 of file blake2b-ref.c.