Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 208 Bytes

227.md

File metadata and controls

9 lines (7 loc) · 208 Bytes

Brute force every ASCII key:

text = "q{vpln'bH_varHuebcrqxetrHOXEj"
for key in range(256):
    print(''.join([chr(key ^ ord(x)) for x in text]))