cryptopals S1-4
Posted xuesu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cryptopals S1-4相关的知识,希望对你有一定的参考价值。
题目:
https://cryptopals.com/sets/1/challenges/4
解法:
legal_chars = "01234567890abcdefghijklmnopgrstuvwxyzABCDEFGHIGKLMNOPQRSTUVWXYZ " with open("f:\4.txt") as fin: for line in fin.readlines(): x = bytes.fromhex(line.strip()) for i in range(256): y = [chr(i^sx) for sx in x] if len([c for c in y if c in legal_chars]) > 0.8 * len(x): print(line, i, ‘‘.join(y))
感想:
没有仔细读题,还以为就是S1-3的放大版
以上是关于cryptopals S1-4的主要内容,如果未能解决你的问题,请参考以下文章