-
Notifications
You must be signed in to change notification settings - Fork 203
/
psk.py
113 lines (110 loc) · 2.05 KB
/
psk.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
psk = {
" " :"1",
"!" :"111111111",
'"' :"101011111",
'#' :"111110101",
'$' :"111011011",
'%' :"1011010101",
'&' :"1010111011",
"'" :"101111111",
'(' :"11111011",
')' :"11110111",
'*' :"101101111",
'+' :"111011111",
',' :"1110101",
'-' :"110101",
'.' :"1010111",
'/' :"110101111",
'0' :"10110111",
'1' :"10111101",
'2' :"11101101",
'3' :"11111111",
'4' :"101110111",
'5' :"101011011",
'6' :"101101011",
'7' :"110101101",
'8' :"110101011",
'9' :"110110111",
':' :"11110101",
';' :"110111101",
'<' :"111101101",
'=' :"1010101",
'>' :"111010111",
'?' :"1010101111",
'@' :"1010111101",
'A' :"1111101",
'B' :"11101011",
'C' :"10101101",
'D' :"10110101",
'E' :"1110111",
'F' :"11011011",
'G' :"11111101",
'H' :"101010101",
'I' :"1111111",
'J' :"111111101",
'K' :"101111101",
'L' :"11010111",
'M' :"10111011",
'N' :"11011101",
'O' :"10101011",
'P' :"11010101",
'Q' :"111011101",
'R' :"10101111",
'S' :"1101111",
'T' :"1101101",
'U' :"101010111",
'V' :"110110101",
'W' :"101011101",
'X' :"101110101",
'Y' :"101111011",
'Z' :"1010101101",
'[' :"111110111",
'\\' :"111101111",
']' :"111111011",
'^' :"1010111111",
'_' :"101101101",
'`' :"1011011111",
'a' :"1011",
'b' :"1011111",
'c' :"101111",
'd' :"101101",
'e' :"11",
'f' :"111101",
'g' :"1011011",
'h' :"101011",
'i' :"1101",
'j' :"111101011",
'k' :"10111111",
'l' :"11011",
'm' :"111011",
'n' :"1111",
'o' :"111",
'p' :"111111",
'q' :"110111111",
'r' :"10101",
's' :"10111",
't' :"101",
'u' :"110111",
'v' :"1111011",
'w' :"1101011",
'x' :"11011111",
'y' :"1011101",
'z' :"111010101",
'{' :"1010110111",
'|' :"110111011",
'}' :"1010110101",
'~' :"1011010111",
}
decode_psk = {}
for k, v in psk.items():
decode_psk[v] = k
def encode(string):
result = []
for c in string:
result.append(psk[c])
return '00'.join(result) + '00'
def decode(string):
try:
return decode_psk[''.join([str(i) for i in string])]
except:
return ''