account/prudplite/src/crypto/mod.rs
2026-03-24 15:48:56 +01:00

9 lines
191 B
Rust

use rnex_core::PID;
pub mod insecure;
pub mod secure;
pub trait Crypto: 'static + Send + Sync {
fn new_connection(&self, data: &[u8]) -> Option<(PID, Vec<u8>)>;
fn new() -> Self;
}