-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.py
executable file
·26 lines (20 loc) · 1.09 KB
/
main.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
#!/usr/bin/env python3
from clusterfk import UI
# JSON: .json
# ------------------
# UI.ClusterFK(6, "./files/saved/deoxys384_table13.json", UI.CIPHER_TRAILS["DeoxysBC"])
# UI.ClusterFK(7, "./files/saved/deoxys384_table14.json", UI.CIPHER_TRAILS["DeoxysBC"])
# Trail: .trail
# ------------------
# UI.ClusterFK(4, "./files/input/deoxysbc256_table7.trail", UI.CIPHER_TRAILS["DeoxysBC"])
# UI.ClusterFK(7, "./files/input/deoxysbc384_table14.trail", UI.CIPHER_TRAILS["DeoxysBC"])
UI.ClusterFK(5, "./files/input/qarma5.trail", UI.CIPHER_TRAILS["Qarma"])
# UI.ClusterFK(5, "./files/input/mantis5R_34.trail", UI.CIPHER_TRAILS["Mantis"])
# UI.ClusterFK(5, "./files/input/mantis5R_36.trail", UI.CIPHER_TRAILS["Mantis"])
#UI.ClusterFK(6, "./files/input/mantis6R_48_2t.trail", UI.CIPHER_TRAILS["Mantis"])
# UI.ClusterFK(7, "./files/input/7r.trail", UI.CIPHER_TRAILS["Mantis"])
# deprecated .cfk
# ------------------
# UI.ClusterFK(5, "./files/saved/mantis5.cfk")
# UI.ClusterFK(5, "./files/saved/Mantis5__.cfk", UI.CIPHER_TRAILS["Mantis"])
# UI.ClusterFK(6, "./files/saved/mantis6_sharam.cfk", UI.CIPHER_TRAILS["Mantis"])