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_H
5#define SIGIL_CRYPTO_ED25519_H
6
7#include <sigil/sigil.h>
8
9#include "ed25519-verify.h"
11/* Register ed25519-verify, ed25519-public-key, ed25519-sign and
12 * blake2b-512 into the module currently being built. Call between
13 * sigil_begin_module and sigil_end_module. */
14void sigil_crypto_register_ed25519(SigilVM *vm);
16#endif