mirror of
https://github.com/kristoferssolo/cipher-workshop.git
synced 2025-12-20 11:04:38 +00:00
15 lines
216 B
Rust
15 lines
216 B
Rust
use crate::key::subkeys::Subkeys;
|
|
use cipher_core::KeyLike;
|
|
|
|
#[derive(Debug)]
|
|
pub struct Des {
|
|
subkeys: Subkeys,
|
|
}
|
|
|
|
impl Des {
|
|
#[must_use]
|
|
pub fn new(_key: impl KeyLike) -> Self {
|
|
todo!()
|
|
}
|
|
}
|