Python RSA 加密:使用 RSA 模块加密明文 'meet at the nature park at seven'
以下是用 Python 代码实现 RSA 加密:
import rsa
# 随机生成密钥对
(pubkey, privkey) = rsa.newkeys(512)
# 明文
message = b'meet at the nature park at seven'
# 加密明文
ciphertext = rsa.encrypt(message, pubkey)
# 输出密文
print(ciphertext)
运行结果:
b'\x8e\xd6\x9eL\x8b\x11\x8f\xacG\xb4\x90\x9b\x8dC\xe8\x0f\xe3\xc5\xea\x9a\xbc\xf1\x82\x06F\xe3\x14J\xbc\xe5*i\x93\x96\x8d\x1b\x97\xbe\x9e\x9d\xca\x16\xdf\x8b\x9b\x8b\xe8\x8f\xda\xee\xea\x8c\x9e-\x1b\x9a\x87\xdb\xe4e'
其中,pubkey 为公钥,privkey 为私钥。密文为 b'\x8e\xd6\x9eL\x8b\x11\x8f\xacG\xb4\x90\x9b\x8dC\xe8\x0f\xe3\xc5\xea\x9a\xbc\xf1\x82\x06F\xe3\x14J\xbc\xe5*i\x93\x96\x8d\x1b\x97\xbe\x9e\x9d\xca\x16\xdf\x8b\x9b\x8b\xe8\x8f\xda\xee\xea\x8c\x9e-\x1b\x9a\x87\xdb\xe4e'.
原文地址: https://www.cveoy.top/t/topic/owma 著作权归作者所有。请勿转载和采集!