-
Notifications
You must be signed in to change notification settings - Fork 2
/
freqMaps.py
55 lines (53 loc) · 3.23 KB
/
freqMaps.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
'''
map first letters according to frequency (OPTIONAL)
format: [
([list of chars with lowest frequency],
[desired mapping for that chars (mapping will be shuffled for each file)]
),
[list of chars with higher frequency],
...
),
...
]
if a character is not in defined mappings a random ascii character is taken
'''
freqMapFemale = [
(['Q','X','Y','Z','Ä','Ö','Ü'],
['Q','X','Y','Z','Ä','Ö','Ü']),
(['A','E','F','H','J','L','M','N','P','S','T','B','C','D','G','I','K','O','R','V','W','U'],
['A','E','F','H','J','L','M','N','P','S','T','B','C','D','G','I','K','O','R','V','W','U'])
]
freqMapMale = [
(['Q','X','Y','Z','Ä','Ö','Ü'],
['Q','X','Y','Z','Ä','Ö','Ü']),
(['A','E','F','H','J','L','M','N','P','S','T','B','C','D','G','I','K','O','R','V','W','U'],
['A','E','F','H','J','L','M','N','P','S','T','B','C','D','G','I','K','O','R','V','W','U'])
]
freqMapFamily = [
(['Q','X','Y','Ä','Ö','Ü'],
['Q','X','Y','Ä','Ö','Ü']),
(['A','E','F','H','J','L','M','N','P','S','T','B','C','D','G','I','K','O','R','V','W','U','Z'],
['A','E','F','H','J','L','M','N','P','S','T','B','C','D','G','I','K','O','R','V','W','U','Z'])
]
freqMapOrg = [
(['0','1','2','3','4','5','6','7','8','9'],
['T','U','V','Z','Q','X','Y','Ä','Ö','Ü']),
(['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'Ä', 'Ü', 'Ö'],
['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'Ä', 'Ü', 'Ö']),
(['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'A', 'R', 'S', 'T', 'U', 'V', 'W', 'E', 'F', 'Z', 'G', 'K', 'M'],
['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'A', 'R', 'S', 'T', 'U', 'V', 'W', 'E', 'F', 'Z', 'G', 'K', 'M'])
]
freqMapStreet = [
(['0','1','2','3','4','5','6','7','8','9'],
['T','U','V','Z','Q','X','Y','Ä','Ö','Ü']),
(['Q','X','Y','Ä','Ö','Ü','O','P','T','U','V','Z'],
['Q','X','Y','Ä','Ö','Ü','O','P','T','U','V','Z']),
(['A','B','F','G','H','K','L','M','R','S','W','C','D','E','I','J','N','O','P','T','U','V','Z'],
['A','B','F','G','H','K','L','M','R','S','W','C','D','E','I','J','N','O','P','T','U','V','Z'])
]
freqMapCity = [
(['Q','X','Y','Ä','Ö','Ü'],
['Q','X','Y','Ä','Ö','Ü']),
(['A','E','F','H','J','L','M','N','P','S','T','B','C','D','G','I','K','O','R','V','W','U','Z'],
['A','E','F','H','J','L','M','N','P','S','T','B','C','D','G','I','K','O','R','V','W','U','Z'])
]