-
Notifications
You must be signed in to change notification settings - Fork 0
/
convert-text.py
151 lines (140 loc) · 2.54 KB
/
convert-text.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
from optparse import OptionParser
import sys
hex2char = {
'F4': '0',
'F5': '1',
'F6': '2',
'F7': '3',
'F8': '4',
'F9': '5',
'FA': '6',
'FB': '7',
'FC': '8',
'FD': '9',
'C0': 'A',
'C1': 'B',
'C2': 'C',
'C3': 'D',
'C4': 'E',
'C5': 'F',
'C6': 'G',
'C7': 'H',
'C8': 'I',
'C9': 'J',
'CA': 'K',
'CB': 'L',
'CC': 'M',
'CD': 'N',
'CE': 'O',
'CF': 'P',
'D0': 'Q',
'D1': 'R',
'D2': 'S',
'D3': 'T',
'D4': 'U',
'D5': 'V',
'D6': 'W',
'D7': 'X',
'D8': 'Y',
'D9': 'Z',
'DA': 'a',
'DB': 'b',
'DC': 'c',
'DD': 'd',
'DE': 'e',
'DF': 'f',
'E0': 'g',
'E1': 'h',
'E2': 'i',
'E3': 'j',
'E4': 'k',
'E5': 'l',
'E6': 'm',
'E7': 'n',
'E8': 'o',
'E9': 'p',
'EA': 'q',
'EB': 'r',
'EC': 's',
'ED': 't',
'EE': 'u',
'EF': 'v',
'F0': 'w',
'F1': 'x',
'F2': 'y',
'F3': 'z',
'BA': ',',
'B2': '!',
'2A': '\'',
'B9': '&',
'B6': '.',
'B1': '"',
'B3': '?',
'B4': '-',
'B7': ':',
'FE': '$',
'B5': '%',
'00': ' ',
'B0': '*',
}
end_hex2char = {
'90': 'A',
'91': 'B',
'92': 'C',
'93': 'D',
'94': 'E',
'95': 'F',
'96': 'G',
'97': 'H',
'98': 'I',
'99': 'J',
'9A': 'K',
'9B': 'L',
'9C': 'M',
'9D': 'N',
'9E': 'O',
'9F': 'P',
'A0': 'Q',
'A1': 'R',
'A2': 'S',
'A3': 'T',
'A4': 'U',
'A5': 'V',
'A6': 'W',
'A7': 'X',
'A8': 'Y',
'A9': 'Z',
'AF': '.',
}
def convert_lookup(lookup):
return dict([(lookup[k], k) for k in lookup.keys()])
char2hex = convert_lookup(hex2char)
end_char2hex = convert_lookup(end_hex2char)
def hexchars(input):
input = input.replace(' ', '').upper()
for i in xrange(0, len(input), 2):
yield ''.join(input[i:i+2])
def translate(input, lookup):
return ''.join([lookup[c] for c in input])
def main(argv):
parser = OptionParser();
parser.add_option('-t', '--text', dest='text',
help='Text to convert to Hex')
parser.add_option('-T', '--endtext', dest='endtext',
help='Text to convert to end credit Hex')
parser.add_option('-x', '--hex', dest='hex',
help='Hex to convert to Text')
parser.add_option('-X', '--endhex', dest='endhex',
help='credit Hex to convert to Text')
(options, args) = parser.parse_args()
if options.hex:
print translate(hexchars(options.hex), hex2char)
elif options.endhex:
print translate(hexchars(options.endhex), end_hex2char)
elif options.text:
print translate(options.text, char2hex)
elif options.endtext:
print translate(options.endtext.upper(), end_char2hex)
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv))