1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00
Files
ojrc/polariton_auth/src/lib.rs
NGnius (Graham) b99bbe67e4 Forbid unsafe
2025-04-06 09:55:29 -04:00

10 lines
191 B
Rust

#![forbid(unsafe_code)]
mod encryption;
pub use encryption::CryptoImpl;
mod handshake;
pub use handshake::{Handshake, AuthProvider, AuthError};
mod ping_pong;
pub use ping_pong::ping_pong;