Skip to main content

libcrux_ed25519/
lib.rs

1#![no_std]
2
3mod hacl {
4    //! This module contains generated hacl code.
5
6    pub(crate) mod ed25519;
7    pub(crate) mod ed25519_precomptable;
8}
9
10mod impl_hacl;
11
12pub use impl_hacl::*;