- 教程
- 教程
- 双倍强度加密(Double Strength Encryption)
- Python Overview and 安装
- Reverse Cipher
- Caesar Cipher
- ROT13算法(ROT13 Algorithm)
- 换位密码(Transposition Cipher)
- 转置密码的加密(Encryption of Transposition Cipher)
- 换位密码的解密(Decryption of Transposition Cipher)
- 加密文件(Encryption of files)
- 解密文件(Decryption of files)
- Base64编码和解码(Base64 Encoding & Decoding)
- XOR Process
- 乘法密码(Multiplicative Cipher)
- Affine Ciphers
- 黑客单字母密码(Hacking Monoalphabetic Cipher)
- 简单的替代密码(Simple Substitution Cipher)
- 简单替换密码的测试(Testing of Simple Substitution Cipher)
- 简单替换密码的解密(Decryption of Simple Substitution Cipher)
- Python Modules of Cryptography
- 了解Vigenere Cipher(Understanding Vignere Cipher)
- 实现Vigenere Cipher(Implementing Vignere Cipher)
- 一次性密码(One Time Pad Cipher)
- 一次性密码密码的实现(Implementation of One Time Pad Cipher)
- 对称和非对称密码学(Symmetric & Asymmetric Cryptography)
- 理解RSA算法(Understanding RSA Algorithm)
- 创建RSA密钥(Creating RSA Keys)
- RSA密码加密(RSA Cipher Encryption)
- RSA密码解密(RSA Cipher Decryption)
- 黑客攻击RSA密码(Hacking RSA Cipher)
- 资源
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
Reverse Cipher
上一章概述了在本地计算机上安装Python的过程。 在本章中,您将详细了解反向密码及其编码。
反向密码算法
反向密码算法具有以下特征 -
反向密码使用反转纯文本字符串的模式转换为密文。
加密和解密过程是一样的。
要解密密文,用户只需要反转密文即可获得纯文本。
Drawback
反向密码的主要缺点是它非常弱。 黑客可以轻松破解密文以获取原始消息。 因此,反向密码不被认为是维护安全通信信道的良好选择。
例子 (Example)
考虑一个示例,其中语句This is program to explain reverse cipher程序,将使用反向密码算法来实现。 以下python代码使用该算法来获取输出。
message = 'This is program to explain reverse cipher.'
translated = '' #cipher text is stored in this variable
i = len(message) - 1
while i >= 0:
translated = translated + message[i]
i = i - 1
print(“The cipher text is : “, translated)
输出 (Output)
您可以看到反转的文本,即输出,如下图所示 -
说明 (Explanation)
纯文本存储在变量消息中,翻译后的变量用于存储创建的密文。
使用for循环并在index number帮助下计算纯文本的长度。 字符存储在translated密文translated ,并在最后一行打印。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论