linux下使用openssl加密文件

seacover 2011-12-09

1.加密一个文件:

 [root@fxvsystemroot]#opensslenc-des-e-a-ininstall.log-outinstall.log.des

 enterdes-cbcencryptionpassword:

 Verifying-enterdes-cbcencryptionpassword:

输入密码之后,就会生成install.log.des文件,这个文件名是自己指定的,可以随意写。

其中:

enc表明你打算使用某个算法

-des是具体使用的某个算法

-e表明要加密

-a同样是使用ASCII进行编码

-in要加密的文件名字

-out加密后的文件名字

2、解密文件

把生成的文件传到另一台机器后,执行如下命令进行解密

 [root@fxvsystemgpg]#opensslenc-des-d-a-ininstall.log.des-outinstall.log

 enterdes-cbcdecryptionpassword:输入口令后,就可以得到解密后的文件了。

其中

-d表明要进行解密。

相关推荐