openssl命令行进行RSA加密解密

实现了在Window控制台使用openssl工具生成rsa私钥和公钥

然后用公钥对于hello.txt文件加密得到enhello.txt文件

最后用私钥对于enhello.txt文件解密得到outhello.txt文件


控制台命令如下:

OpenSSL> genrsa -out rsa_private_key.pem 1024
Generating RSA private key, 1024 bit long modulus
.......+++++
.+++++
e is 65537 (0x010001)
OpenSSL> rsa -in rsa_private_key.pem -pubout -out rsa_public_key.pem
writing RSA key
OpenSSL> rsautl -encrypt -in hello.txt -inkey rsa_public_key.pem -pubin -out enhello.txt
OpenSSL> rsautl -decrypt -in enhello.txt -inkey rsa_private_key.pem -out outhello.txt
OpenSSL>

文件一览:

openssl命令行进行RSA加密解密_第1张图片

 

你可能感兴趣的:(密码学,openssl)