falcon_det/lib.rs
1// Copyright (c) Jeeyong Um <conr2d@proton.me>
2// SPDX-License-Identifier: MIT OR Apache-2.0
3//
4// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7// option. This file may not be copied, modified, or distributed
8// except according to those terms.
9
10//! Deterministic Falcon post-quantum signature scheme.
11//!
12//! This crate provides Rust bindings to a deterministic version of
13//! [Falcon] post-quantum signature scheme by [Algorand].
14//!
15//! [Falcon]: https://falcon-sign.info
16//! [Algorand]: https://github.com/algorand/falcon
17//!
18//! ## MSRV
19//!
20//! The `falcon-det` minimum supported Rust version is **1.83.0**.
21
22extern crate falcon_det_sys as sys;
23
24#[doc(hidden)]
25pub mod aux;
26pub mod det1024;
27pub mod error;
28pub mod shake256;
29#[cfg(test)]
30mod tests;
31
32#[doc(hidden)]
33pub use error::Error;