cryptopals

https://cryptopals.com/
Log | Files | Refs

hex_to_base64.py (147B)


      1 hex = "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d"
      2 
      3 print hex.decode("hex").encode("base64")