主頁 > 知識庫 > Powershell實現(xiàn)加密解密文本文件方法實例

Powershell實現(xiàn)加密解密文本文件方法實例

熱門標簽:安徽400電話辦理 湖州電銷防封卡 信陽話務外呼系統(tǒng)怎么收費 金融電銷公司怎么辦理外呼系統(tǒng) 電話智能外呼系統(tǒng)誠信合作 雷霆電話機器人電話 什么渠道可以找外呼系統(tǒng)客戶 使用電話機器人電銷是否違法 真人和電話機器人對話

適用于Powershell3.0及以后版本。
假設你需要給文件加密,下面教你如何給自己的文件加密:

$Path = "$env:temp\secret.txt"
$Secret = 'Hello World!'
$Passphrase = 'Some secret key'
 
$key = [Byte[]]($Passphrase.PadRight(24).Substring(0,24).ToCharArray())
 
$Secret |
 ConvertTo-SecureString -AsPlainText -Force |
 ConvertFrom-SecureString -Key $key |
 Out-File -FilePath $Path
 
notepad $Path

當你需要解密出里面的內(nèi)容,這時就需要最初的密碼:

$Passphrase = Read-Host 'Enter the secret pass phrase'
 
$Path = "$env:temp\secret.txt"
 
$key = [Byte[]]($Passphrase.PadRight(24).Substring(0,24).ToCharArray())
 
try
{
 $decryptedTextSecureString = Get-Content -Path $Path -Raw |
 ConvertTo-SecureString -Key $key -ErrorAction Stop
 
 $cred = New-Object -TypeName System.Management.Automation.PSCredential('dummy', $decryptedTextSecureString)
 $decryptedText = $cred.GetNetworkCredential().Password
}
catch
{
 $decryptedText = '(wrong key)'
}
"The decrypted secret text: $decryptedText"

您可能感興趣的文章:
  • 使用shc工具加密shell腳本詳解
  • CentOS下對shell腳本加密的二種方法
  • 對Shell 腳本加密的方法
  • asp木馬代碼解密的隨機加密webshell
  • shell腳本加密工具shc使用詳解

標簽:濟南 鶴崗 六盤水 山南 湛江 德州 岳陽 運城

巨人網(wǎng)絡通訊聲明:本文標題《Powershell實現(xiàn)加密解密文本文件方法實例》,本文關鍵詞  Powershell,實現(xiàn),加密解密,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關。
  • 相關文章
  • 下面列出與本文章《Powershell實現(xiàn)加密解密文本文件方法實例》相關的同類信息!
  • 本頁收集關于Powershell實現(xiàn)加密解密文本文件方法實例的相關信息資訊供網(wǎng)民參考!
  • 推薦文章