Guest User

Untitled

a guest
Jun 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. def xorConf(self, conf):
  2. xorKey = 0x73B5DBFA
  3. out = ''
  4. for x in range(0x100):
  5. out += str(ord(conf[x]) ^ xorKey)
  6. xorKey = (xorKey << 1) | (xorKey >> 31)
  7.  
  8. return out
Add Comment
Please, Sign In to add comment