rust-nex/prudpv0/src/crypto/secure.rs
2026-01-20 20:26:44 +01:00

9 lines
153 B
Rust

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