fork download
  1. #!/usr/bin/env python3
  2.  
  3. from random import *
  4. from Crypto.Util.number import *
  5.  
  6. def decrypt(msg, KEY):
  7. c = KEY ^ m
  8. return long_to_bytes(c)
  9.  
  10. m = 2290064970177041546889165766737348623235283630135906565145883208626788551598431732
  11. k = 23226475334448992634882677537728533150528705952262010830460862502359965393545
  12. print(decrypt(m, k))
Success #stdin #stdout 0.04s 12416KB
stdin
Standard input is empty
stdout
b'MAPNA{R_U_MT19937_PRNG_Predictor?}'