This crate is Enigma Machine corresponding to various character strings.
Insert to Cargo.toml of your project.
toml
[dependencies]
enigma_machine = "0.1.0"
or
console
❯ cargo add encrypter
import ```rust extern crate enigma_machine;
use enigmamachine::{ Enigma, Router, Reflector, Plugboard, SubstitutionTable };
use enigmamachine::{ SUBSTITUTIONTABLE1, SUBSTITUTIONTABLE2, SUBSTITUTIONTABLE3, REFLECTOR, PLUGBOARD };
**setup enigma**
rust
let mut enimga = Enigma::new(
vec![
Router::new(SubstitutionTable::new(SUBSTITUTIONTABLE1.tovec())),
Router::new(SubstitutionTable::new(SUBSTITUTIONTABLE2.tovec())),
Router::new(SubstitutionTable::new(SUBSTITUTIONTABLE3.tovec())),
],
Plugboard::new(SubstitutionTable::new(PLUGBOARD.tovec())),
Reflector::new(SubstitutionTable::new(REFLECTOR.tovec()))
);
**set routers position.**
rust
let positions = "ABC";
enigma.setpositions(positions);
**encrypt and decrypt.**
rust
let encrypted = enigma.encrypt(&string);
let decrypted = enigma.decrypt(&encrypted);
```
MIT