摘要: Security and Cryptography in Python - Attack on Caesar Cipher Crypto Rule #1(Kerckhoffs' Principle) Eve should not be able to break the ciphers even w 阅读全文
posted @ 2021-01-31 15:02 晨风_Eric 阅读(66) 评论(0) 推荐(0)
摘要: Security and Cryptography in Python - Caesar Cipher Decryption Coding in Python def generate_key(n): letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" key = {} c 阅读全文
posted @ 2021-01-31 14:37 晨风_Eric 阅读(53) 评论(0) 推荐(0)
摘要: Security and Cryptography in Python - Caesar Cipher Coding in Python def generate_key(n): letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" key = {} cnt = 0 for 阅读全文
posted @ 2021-01-31 13:39 晨风_Eric 阅读(52) 评论(0) 推荐(0)