rust-nex/prudpv0/src/crypto/secure.rs

9 lines
153 B
Rust
Raw Normal View History

2026-01-20 20:26:44 +01:00
use crate::crypto::Crypto;
pub struct Secure();
impl Crypto for Secure {
fn calculate_checksum(&self, data: &[u8]) -> u8 {
todo!()
}
}