Cryptography With Python 简明教程
Cryptography with Python - Reverse Cipher
上一章概述了如何在本地计算机上安装 Python。在本章中,你将详细了解反向密码及其编码。
Algorithm of Reverse Cipher
反向密码算法具有以下特征:
-
* 反向密码使用反转明文串的模式来转换为密文串。
-
* 加密和解密的过程相同。
-
* 若要解密密文,用户只需反转密文即可获得明文。
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)