AtlatestRepositorysigil-crypto
sigil-crypto / tree / nativeed25519.h
1
/*2
* Ed25519 and BLAKE2b-512 natives for (sigil crypto). See ed25519.c.3
*/4
#ifndef SIGIL_CRYPTO_ED25519_H5
#define SIGIL_CRYPTO_ED25519_H7
#include <sigil/sigil.h>9
#include "ed25519-verify.h"11
/* Register ed25519-verify, ed25519-public-key, ed25519-sign and12
* blake2b-512 into the module currently being built. Call between13
* sigil_begin_module and sigil_end_module. */14
void sigil_crypto_register_ed25519(SigilVM *vm);16
#endif