#include <cstddef>
#include <cstdint>
Go to the source code of this file.
|
int | kagome::crypto::blake2b_init (blake2b_ctx *ctx, size_t outlen, const void *key, size_t keylen) |
|
void | kagome::crypto::blake2b_update (blake2b_ctx *ctx, const void *in, size_t inlen) |
|
void | kagome::crypto::blake2b_final (blake2b_ctx *ctx, void *out) |
|
int | kagome::crypto::blake2b (void *out, size_t outlen, const void *key, size_t keylen, const void *in, size_t inlen) |
|
struct kagome::crypto::blake2b_ctx |
Definition at line 18 of file blake2b.h.
Class Members |
uint8_t |
b[128] |
|
size_t |
c |
|
uint64_t |
h[8] |
|
size_t |
outlen |
|
uint64_t |
t[2] |
|