1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#include "crypton_blake2bp.h"
void crypton_blake2bp_init(blake2bp_ctx *ctx, uint32_t hashlen)
{
_crypton_blake2bp_init(ctx, hashlen / 8);
}
void crypton_blake2bp_init_key(blake2bp_ctx *ctx, uint32_t hashlen, const uint8_t *key, size_t keylen)
{
_crypton_blake2bp_init_key(ctx, hashlen / 8, (const void *) key, keylen);
}
void crypton_blake2bp_update(blake2bp_ctx *ctx, const uint8_t *data, uint32_t len)
{
_crypton_blake2bp_update(ctx, data, len);
}
void crypton_blake2bp_finalize(blake2bp_ctx *ctx, uint32_t hashlen, uint8_t *out)
{
_crypton_blake2bp_final(ctx, out, hashlen / 8);
}
|