3 from string
import ascii_uppercase, ascii_lowercase
7 self.
a =
'4e566d6e466c50784b416e477a527176587337444b5730554530324e4d39706d6774535531614c'
11 for char
in bytes.fromhex(data).decode(
'ascii'):
12 if char
in ascii_uppercase:
13 index = (ascii_uppercase.find(char) + 13) % 26
14 total.append(ascii_uppercase[index])
15 elif char
in ascii_lowercase:
16 index = (ascii_lowercase.find(char) + 13) % 26
17 total.append(ascii_lowercase[index])