上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 51 下一页
摘要: Security and Cryptography in Python - Block Cipher(3) 阅读全文
posted @ 2021-02-10 10:21 晨风_Eric 阅读(40) 评论(0) 推荐(0) 编辑
摘要: Security and Cryptography in Python - Block Cipher(2) Double DES from pyDes import * import random message = "01234567" key_11 = random.randrange(0, 2 阅读全文
posted @ 2021-02-10 10:13 晨风_Eric 阅读(62) 评论(0) 推荐(0) 编辑
摘要: Security and Cryptography in Python - Block Cipher(1) DES https://en.wikipedia.org/wiki/Data_Encryption_Standard GOST https://en.wikipedia.org/wiki/GO 阅读全文
posted @ 2021-02-08 20:56 晨风_Eric 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(34) 评论(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 阅读(72) 评论(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 阅读(68) 评论(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 阅读(66) 评论(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 阅读(91) 评论(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 阅读(124) 评论(0) 推荐(0) 编辑
摘要: Security and Cryptography in Python - Frequency Analysis Frequency Analysis cipher = """lrvmnir bpr sumvbwvr jx bpr lmiwv yjeryrkbi jx qmbm wi bpr xjv 阅读全文
posted @ 2021-02-05 22:12 晨风_Eric 阅读(226) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 51 下一页