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

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

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

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

$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

當(dāng)你需要解密出里面的內(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木馬代碼解密的隨機(jī)加密webshell
  • shell腳本加密工具shc使用詳解

標(biāo)簽:濟(jì)南 鶴崗 六盤水 山南 湛江 德州 岳陽 運(yùn)城

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