密码学
深度厌学
这个作者很懒,什么都没留下…
展开
-
linux下用openssl的RSA算法对文件加密解密
Linux下用openssl的RSA算法对文件加密解密原创 2016-05-27 14:20:04 · 3481 阅读 · 0 评论 -
linux下使用openssl的对称密码体制对文本和文件加密
对文本加密echo "hello,world" | openssl enc -aes-256-cbc -a 其中enc表示encode,-aes-256-cbc表示加密标准,-a表示使用ANSI编码方式 这时候会让你输入password(密钥),输入即可,此处我们以hello为密钥为例对文本解密echo "xxxxxx..." | openssl enc -d -aes-256-cbc -a 其中原创 2016-05-28 01:05:12 · 1377 阅读 · 0 评论 -
linux下使用openssl对文件RSA加密解密
生成一个1024位的密钥:openssl genrsa -out test.key 1024 从这个密钥中分离出公钥:openssl rsa -in test.key -pubout -out test_pub.key 对hello.txt进行加密:openssl rsautl -encrypt -in hello.txt -inkey test_pub.key -pubin -out hello.原创 2016-07-05 00:14:14 · 709 阅读 · 0 评论