openssl enc -aes-128-cbc -in test.cpp -out test11.cpp -iv f123 -K 1223 #aes-128-cbc为填充模式 -iv指定盐 -K指定秘钥
openssl aes-128-cbc -d -in test11.cpp -out test22.cpp -iv f123 -K 1223 #解密
sha256sum test.cpp
#控制台输出a4a47eb4777020e741c5b3cd6e29fd2325ebd8c13233095f521009129602ccf3 test.cpp
openssl genrsa -out test_priv.pem 2048 #生成私钥文件test_priv.pem
openssl rsa -pubout -in test_priv.pem -out test_pub.pem #从私钥提取公钥到文件test_pub.pem
openssl dgst -sign test_priv.pem -sha256 -out sign.txt test.cpp #使用杂凑sha256和私钥对test.cpp生成数字签名到文件sig.txt
openssl dgst -verify test_pub.pem -sha256 -signature sign.txt test.cpp #对test.cpp 签名文件sig.txt和公钥test_pub.pem进行验签 控制台输出“Verified OK”表示验证通过
openssl ecparam -list_curves #查看椭圆曲线
openssl ecparam -name secp256k1 -genkey -out ec.key #使用椭圆曲线secp256k1生成私钥和参数,写入文件ec.key
openssl ec -in ec.key -pubout -out ec.pubkey #生成公钥到文件ec.pubkey
openssl dgst -sha256 -sign ec.key -out ec.sig test.cpp #使用杂凑sha256和私钥对test.cpp生成数字签名到文件ec.sig
openssl dgst -sha256 -verify ec.pubkey -signature ec.sig test.cpp #对test.cpp 签名文件ec.sig和公钥ec.pubkey进行验签 控制台输出“Verified OK”表示验证通过
openssl genrsa -out test.key 1024 #生成一个1024字节包括公钥和私钥的文件test.key
openssl rsa -in test.key -pubout -out test_pub.key #从test.key提取公钥到test_pub.key文件
openssl rsautl -encrypt -in test.cpp -inkey test_pub.key -pubin -out test.en #将test.cpp按照公钥加密得到test.en密文
openssl rsautl -decrypt -in test.en -inkey test.key -out test.de #根据私钥将test.en解密为明文test.de
diff test.cpp test.de #两者无差别
openssl version
常见openssl加解密命令
原创
©著作权归作者所有:来自51CTO博客作者我是006的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:shell命令行参数操作
下一篇:leetcode 有效的数独
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
SpringBoot 接口数据加解密解说,你的系统真的安全吗?
SpringBoot 接口数据加解密解说,你的系统真的安全吗?
接口加密解密 接口安全 java -
openssl 加解密
加密数据有很多种方法,今天我们来看一下OPENSSL RSA的加密办法。1、首先得安装p
php linux 公钥加密 -
加解密,OpenSSL,OpenSSH
OpenSSL:数据加密: SSL: Secure Socket LayerNIST: 保密性: 数据保密性 隐私性 &n
openssh 数据加解密 openss -
OpenSSL加解密使用
csnd
密钥长度 对称加密 编码格式