Python 密码学 - 一次一密密码的实现
Python 包含一个用于one-time-pad 密码实现的 hacky 实现模块。 包名为One-Time-Pad,其中包含一个命令行加密工具,使用类似于一次性密码算法的加密机制。
安装
您可以使用以下命令安装此模块 −
pip install onetimepad
如果您想从命令行使用它,请运行以下命令 −
onetimepad
代码
以下代码有助于生成一次一密密码 −
import onetimepad cipher = onetimepad.encrypt('One Time Cipher', 'random') print("Cipher text is ") print(cipher) print("Plain text is ") msg = onetimepad.decrypt(cipher, 'random') print(msg)
输出
当你运行上面给出的代码时,你可以观察到以下输出 −
注意 − 如果密钥的长度小于消息(明文)的长度,则加密消息很容易被破解。
无论如何,密钥不一定是随机的,这使得一次一密密码成为一种有价值的工具。