Guest User

Untitled

a guest
Nov 21st, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. encrypted=[0x1c, 0xd, 0x5, 0x1f, 0x5e, 0x2c, 0x1c, 0xa, 0xb, 0x18, 0xc, 0x36, 0x0, 0x44, 0x10, 0x8, 0x0, 0xa, 0x7, 0x49, 0x48]
  2.  
  3. key='this1skey'
  4. length=len(key)
  5.  
  6. for i,e in enumerate(encrypted):
  7. print(chr(e^ord(key[i%length])),end="")
Add Comment
Please, Sign In to add comment