23 lines
468 B
Rust
23 lines
468 B
Rust
// Copyright (c) Facebook, Inc. and its affiliates.
|
|||
|
|
//
|
||
|
|
// This source code is licensed under the MIT license found in the
|
||
|
|
// LICENSE file in the root directory of this source tree.
|
||
|
|
|
||
|
|
// #![cfg_attr(not(feature = "bench"), deny(missing_docs))]
|
||
|
|
#![deny(unsafe_code)]
|
||
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
||
|
|
|
||
|
|
extern crate alloc;
|
||
|
|
|
||
|
|
#[macro_use]
|
||
|
|
mod serialization;
|
||
|
|
|
||
|
|
pub mod ciphersuite;
|
||
|
|
pub mod errors;
|
||
|
|
pub mod group;
|
||
|
|
pub mod hash;
|
||
|
|
pub mod voprf;
|
||
|
|
|
||
|
|
#[cfg(test)]
|
||
|
|
mod tests;
|