Skip to main content

cryptography_breaker/algorithms/
one_time_pad.rs

1pub struct OneTimePad;
2
3impl Default for OneTimePad {
4    fn default() -> Self {
5        Self::new()
6    }
7}
8
9impl OneTimePad {
10    pub fn new() -> Self {
11        Self
12    }
13}