Crptopals S1-1

题目:

https://cryptopals.com/sets/1/challenges/1

转码,hex到base64

x = "0x49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d"
bx = bytes.fromhex(x)
base64.b64encode(bx)

posted @ 2019-12-07 00:06  雪溯  阅读(108)  评论(0编辑  收藏  举报