This repository has been archived on 2025-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AIT/src/model/models.rs

14 lines
249 B
Rust
Raw Normal View History

2024-07-19 23:05:55 +04:00
#[repr(usize)]
#[derive(Clone)]
pub enum HammingMode {
Encrypt = 4,
Decrypt = 7,
}
pub struct EventHandler<F, C> {
pub(crate) component: C,
pub(crate) callback: F,
}
pub type SchemeCharacteristics = (f64, f64, f64, f64, f64, f64);