# tar -zcvf - pma|openssl des3 -salt -k password | dd of=pma.des3完成将得到一个pma.des3的打包文件,用你设置的密码替换password。 2、使用tar对加密文件解压: # dd if=pma.des3 |openssl des3 -d -k password|tar zxf -注意:命令最后有”-”,它将释放所有的文件。其中-k password可以不使用,...
1、使用tar对文件压缩加密: tar -zcvf - ./test_fold|openssl des3 -salt -k mypassword | dd of=test.des3 完成将得到一个pma.des3的打包文件,用你设置的密码替换password。 2、使用tar对加密文件解压: dd if=test.des3 |openssl des3 -d -k mypassword|tar zxf - 注意:命令最后有”-”,它将释...
加密格式:openssl enc 加密算法 -k 密钥 -in 明文 -out 密文 例子:/opt/openssl/bin/openssl enc -des3 -k mykey -in test1.txt -out test1.enc 解密格式:openssl enc 加密算法 -d -k 密钥 -in 密文 -out 明文 例子:/opt/openssl/bin/openssl enc -des3 -d -k mykey -in test1.enc -out ...
openssl enc –ciphername –k password-d –in file -out file 加密算法有:base64,des,des3,rc2,rc5,aes256 例如: /bin/openssl enc –des3 –k boobooke –in pt.txt –out ct.bin//加密 /bin/openssl enc –des3 –d–k boobooke –in ct.bin –out pt1.txt//解密 非对称加密 Generate the ...
解压解密: # 解压加密压缩sql的文件# 如果不加 -k Unfd@89dN3Cpq,命令行执行会提示输入密码的ddif=filename.tar.gz |openssl des3 -d -k Unfd@89dN3Cpq|tar -zxf -
-d: 列出openssl的安装目录 OpenSSL命令---enc: 用途: 对称加密算法工具。它能够运用块或流算法对数据进行加解密。还能够将加解密的结果进行base64编码。 用法: openssl enc -ciphername [-in filename] [-out filename] [-pass arg] [-e] [-d] [-a/-base64] [-A] [-k password] [-kfile file...
在Linux系统中你可以通过:man openssl 快速获得帮助文件。 例:对文件file.tar.gz进行加密,密码为123456 openssl des3 -salt -k 123456 -in file.tar.gz -out file.tar.gz.des3 对file.tar.gz.des3 解密 openssl enc -des3 -d -in file.tar.gz.des3 -out file.tar.gz...
对称加密采用了对称密码编码技术,它的特点是文件加密和解密使用相同的密钥,即加密密钥也可以用作解密密钥,这种方法在密码学中叫做对称加密算法,对称加密算法使用起来简单快捷,密钥较短。常见的对称加密算法:DES,AES,3DES等等。 与对称加密算法不同,非对称加密算法需要两个密钥:公开密钥(publickey)和私有密钥 (privatekey...
-des3:指定算法算法-salt:默认设置,可以不写。生成一段字符串放在密码最前面进行加密,提高解密难度。-a:基于base64处理数据。加密结果进行base64编码处理-in:读取那个文件进行加密-out:输出到那里-d:指定为解密 #openssl支持的加密算法 Standard commands<--标准命令...
openSSL genrsa -Des3 -out SSL.key1024