對稱加密檔案 如何加密 如何解密

2021-09-27 08:53:27 字數 537 閱讀 3556

gnupg是非常流行的加密軟體,支援所有常見的加密演算法,並且開源免費使用.

[a@ceshi~] # yum -y install gnupg2 //安裝軟體

[a@ceshi~] # gpg --version //檢視版本

[a@ceshi~] # echo 「ceishi」 > ceshi.txt //建立測試文件

[a@ceshi~] # gpg -c ceshi.txt //對文件進行加密,自動彈出密碼輸入框

[a@ceshi~] # ls //檢視家目錄下的文件.乙個是源文件cheshi.txt ,還有乙個是已加密的文件cheshi.txt.gpg

[a@ceshi~] # gpg -d ceshi.txt.gpg >jiemi.txt //解密文件並儲存到指定目錄jiemi.txt中.

…自動彈出密碼輸入框.輸入加密時設定的密碼即可檢視加密文件的內容,若不解密,則顯示的是加密亂碼.

注意:1.同一臺主機不同使用者做對稱加密時,客戶端不能用su - name訪問,只能用ssh訪問.否則gpg -d 解密時會報錯: 解密失敗.

對稱加密 解密

加密 public static class encrypting 使用對稱演算法加密 public static string symmetricencrypts string str 如需指定加密演算法,可在create 引數中指定字串 create 方法中的引數可以是 des rc2 syst...

對稱加密解密

幫助類 public class cryptohelper encryptor provider.createencryptor decryptor provider.createdecryptor initializes a new instance of the class.金鑰 public ...

加密解密 使用對稱密碼加密檔案

造冰箱的大熊貓 cnblogs 2019 5 24 1 加密 gpg c file to be encrypted 其中,file to be encrypted 是待加密檔案。gpg只能加密檔案,不能加密資料夾。要對資料夾進行加密,需先將資料夾進行打包。加密後的檔案為 file to be enc...