13 lines
333 B
C
13 lines
333 B
C
#ifndef CRYPTOHASH_BLAKE2SP_H
|
|
#define CRYPTOHASH_BLAKE2SP_H
|
|
|
|
#include "blake2.h"
|
|
|
|
typedef blake2sp_state blake2sp_ctx;
|
|
|
|
void cryptonite_blake2sp_init(blake2sp_ctx *ctx);
|
|
void cryptonite_blake2sp_update(blake2sp_ctx *ctx, const uint8_t *data, uint32_t len);
|
|
void cryptonite_blake2sp_finalize(blake2sp_ctx *ctx, uint8_t *out);
|
|
|
|
#endif
|