mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
892f3e348d
[no changelog]
22 lines
604 B
C
22 lines
604 B
C
#ifndef ED25519_SHA3_H
|
|
#define ED25519_SHA3_H
|
|
|
|
#include "ed25519.h"
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ed25519_publickey_sha3(const ed25519_secret_key sk, ed25519_public_key pk);
|
|
|
|
int ed25519_sign_open_sha3(const unsigned char *m, size_t mlen, const ed25519_public_key pk, const ed25519_signature RS);
|
|
void ed25519_sign_sha3(const unsigned char *m, size_t mlen, const ed25519_secret_key sk, ed25519_signature RS);
|
|
|
|
int ed25519_scalarmult_sha3(ed25519_public_key res, const ed25519_secret_key sk, const ed25519_public_key pk);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif // ED25519_SHA3_H
|