mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
24 lines
777 B
C
24 lines
777 B
C
/*
|
|
a custom hash must have a 512bit digest and implement:
|
|
|
|
struct ed25519_hash_context;
|
|
|
|
void ed25519_hash_init(ed25519_hash_context *ctx);
|
|
void ed25519_hash_update(ed25519_hash_context *ctx, const uint8_t *in, size_t inlen);
|
|
void ed25519_hash_final(ed25519_hash_context *ctx, uint8_t *hash);
|
|
void ed25519_hash(uint8_t *hash, const uint8_t *in, size_t inlen);
|
|
*/
|
|
|
|
#ifndef ED25519_HASH_CUSTOM
|
|
#define ED25519_HASH_CUSTOM
|
|
|
|
#include "sha3.h"
|
|
|
|
#define ed25519_hash_context SHA3_CTX
|
|
#define ed25519_hash_init(ctx) sha3_512_Init(ctx)
|
|
#define ed25519_hash_update(ctx, in, inlen) sha3_Update((ctx), (in), (inlen))
|
|
#define ed25519_hash_final(ctx, hash) sha3_Final((ctx), (hash))
|
|
#define ed25519_hash(hash, in, inlen) sha3_512((in), (inlen), (hash))
|
|
|
|
#endif // ED25519_HASH_CUSTOM
|