1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Enigma-inspired transformation engine.
//!
//! This crate provides a modular, deterministic pipeline inspired by the
//! historical Enigma machine architecture.
//!
//! The focus is on explicit state management, composability, and testability.
//!
//! ⚠️ This crate does NOT provide cryptographic security guarantees.
// Core building blocks
// Public re-exports (stable surface)
pub use EnigmaComponent;
pub use ;
pub use EnigmaMachine;
pub use EnigmaState;
pub use SteppingStrategy;
// Concrete components
pub use Plugboard;
pub use Reflector;
pub use Rotor;
// Stepping strategies
pub use LinearStepping;