Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. '''
  2. Encrypt
  3. '''
  4.  
  5. test = encrypt('')
  6. test = encrypt((test[32:64]).decode('hex'))
  7. test = test[:64] + ("000000000000000000000" + ';admin=true').encode('hex') + test[64:]
  8. print len(test.decode('hex'))%32
  9.  
  10. decrypt(test)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement