摘要: Security and Cryptography in Python - Stream Ciphers(5) Stream Cipher in Real Life - A5/1 Linear Feedback Shift Registers(LFSR) 阅读全文
posted @ 2021-02-06 19:56 晨风_Eric 阅读(46) 评论(0) 推荐(0)
摘要: Security and Cryptography in Python - Stream Ciphers(4) Low entropy - Brute force of our Stream Cipher import random class KeyStream: def __init__(sel 阅读全文
posted @ 2021-02-06 18:46 晨风_Eric 阅读(84) 评论(0) 推荐(0)
摘要: Security and Cryptography in Python - Stream Ciphers(3) The problem of re-use of keys in Stream Ciphers import random class KeyStream: def __init__(se 阅读全文
posted @ 2021-02-06 18:17 晨风_Eric 阅读(78) 评论(0) 推荐(0)
摘要: Security and Cryptography in Python - Stream Ciphers(2) Implementation of the Authenticity problem with Stream Ciphers import random class KeyStream: 阅读全文
posted @ 2021-02-06 15:49 晨风_Eric 阅读(71) 评论(0) 推荐(0)
摘要: Security and Cryptography in Python - Stream Ciphers(1) The practical implementations of One Time Pads Real-life One Time Pad? 1Gb message requires 1G 阅读全文
posted @ 2021-02-06 15:05 晨风_Eric 阅读(111) 评论(0) 推荐(0)
摘要: Security and Cryptography in Python - One Time Pad XOR Example def xor(x, s): print(x, 'xor', s, '=', x^s) def xorb(x, s): print(bin(x), 'xor', bin(s) 阅读全文
posted @ 2021-02-06 12:47 晨风_Eric 阅读(138) 评论(0) 推荐(0)