-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDemo.py
59 lines (55 loc) · 2.03 KB
/
Demo.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from Enigma.Enigma import Enigma
from Enigma.Rotor import Rotor
from Enigma.Reflector import Reflector
from Enigma.Plugboard import Plugboard
e1 = Enigma(
rotors = [
Rotor(
ring_setting = 5,
type = "IC"
),
Rotor(
ring_setting = 7,
type = "IIC"
),
Rotor(
ring_setting = 10,
type = "IIIC"
)
],
reflector = Reflector("B"),
plugboard = Plugboard([
("A","X"),
("H","Z"),
("B","R"),
("V","S"),
("Y","Q")
])
);
encrypted_string = e1.encrypt("Hello")
print(encrypted_string);
e2 = Enigma(
rotors = [
Rotor(
ring_setting = 5,
type = "IC"
),
Rotor(
ring_setting = 7,
type = "IIC"
),
Rotor(
ring_setting = 10,
type = "IIIC"
)
],
reflector = Reflector("B"),
plugboard = Plugboard([
("A","X"),
("H","Z"),
("B","R"),
("V","S"),
("Y","Q")
])
);
print(e2.decrypt(encrypted_string));