Monero
Loading...
Searching...
No Matches
blake256.h File Reference
#include <stdint.h>
Include dependency graph for blake256.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  state
struct  hmac_state

Functions

void blake256_init (state *)
void blake224_init (state *)
void blake256_update (state *, const uint8_t *, uint64_t)
void blake224_update (state *, const uint8_t *, uint64_t)
void blake256_final (state *, uint8_t *)
void blake224_final (state *, uint8_t *)
void blake256_hash (uint8_t *, const uint8_t *, uint64_t)
void blake224_hash (uint8_t *, const uint8_t *, uint64_t)
void hmac_blake256_init (hmac_state *, const uint8_t *, uint64_t)
void hmac_blake224_init (hmac_state *, const uint8_t *, uint64_t)
void hmac_blake256_update (hmac_state *, const uint8_t *, uint64_t)
void hmac_blake224_update (hmac_state *, const uint8_t *, uint64_t)
void hmac_blake256_final (hmac_state *, uint8_t *)
void hmac_blake224_final (hmac_state *, uint8_t *)
void hmac_blake256_hash (uint8_t *, const uint8_t *, uint64_t, const uint8_t *, uint64_t)
void hmac_blake224_hash (uint8_t *, const uint8_t *, uint64_t, const uint8_t *, uint64_t)

Function Documentation

◆ blake224_final()

void blake224_final ( state * S,
uint8_t * digest )

◆ blake224_hash()

void blake224_hash ( uint8_t * out,
const uint8_t * in,
uint64_t inlen )

◆ blake224_init()

void blake224_init ( state * S)

◆ blake224_update()

void blake224_update ( state * S,
const uint8_t * data,
uint64_t datalen )

◆ blake256_final()

void blake256_final ( state * S,
uint8_t * digest )

◆ blake256_hash()

void blake256_hash ( uint8_t * out,
const uint8_t * in,
uint64_t inlen )

◆ blake256_init()

void blake256_init ( state * S)

◆ blake256_update()

void blake256_update ( state * S,
const uint8_t * data,
uint64_t datalen )

◆ hmac_blake224_final()

void hmac_blake224_final ( hmac_state * S,
uint8_t * digest )

◆ hmac_blake224_hash()

void hmac_blake224_hash ( uint8_t * out,
const uint8_t * key,
uint64_t keylen,
const uint8_t * in,
uint64_t inlen )

◆ hmac_blake224_init()

void hmac_blake224_init ( hmac_state * S,
const uint8_t * _key,
uint64_t keylen )

◆ hmac_blake224_update()

void hmac_blake224_update ( hmac_state * S,
const uint8_t * data,
uint64_t datalen )

◆ hmac_blake256_final()

void hmac_blake256_final ( hmac_state * S,
uint8_t * digest )

◆ hmac_blake256_hash()

void hmac_blake256_hash ( uint8_t * out,
const uint8_t * key,
uint64_t keylen,
const uint8_t * in,
uint64_t inlen )

◆ hmac_blake256_init()

void hmac_blake256_init ( hmac_state * S,
const uint8_t * _key,
uint64_t keylen )

◆ hmac_blake256_update()

void hmac_blake256_update ( hmac_state * S,
const uint8_t * data,
uint64_t datalen )