mini_enigma/utils/
consts.rs

1/// Number of rotors for the M3 Enigma
2pub const M3: usize = 3;
3
4/// Number of rotors for the M4 Enigma
5pub const M4: usize = 4;
6
7/// Number of rotors to use by default
8pub const DEFAULT_ROTOR_NUM: usize = M3;