elaeis4/quicktap/src/lib.rs

15 lines
466 B
Rust
Raw Normal View History

//! A simple, almost pure-rust, cross-platform `WireGuard` implementation.
2022-12-14 02:53:22 +00:00
//! Designed to function similarly to boringtun, this crate has modules for cross-platform device drivers, the Noise_IKpsk2 handshake, and cryptography constructs required for the above.
#![warn(clippy::pedantic)]
#![warn(clippy::nursery)]
#![deny(missing_docs)]
// This is an annoyance
#![allow(clippy::must_use_candidate)]
2022-12-14 02:53:22 +00:00
pub mod drivers;
2022-12-13 01:24:48 +00:00
pub mod qcrypto;
2022-12-14 02:53:22 +00:00
pub mod noise;
pub use cidr;