主页 > 知识库 > Powershell实现加密解密文本文件方法实例

Powershell实现加密解密文本文件方法实例

热门标签:铁路电话系统 地方门户网站 网站排名优化 呼叫中心市场需求 AI电销 百度竞价排名 服务外包 Linux服务器

适用于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

当你需要解密出里面的内容,这时就需要最初的密码:

$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使用详解

标签:兰州 崇左 铜川 衡水 湘潭 仙桃 湖南 黄山

巨人网络通讯声明:本文标题《Powershell实现加密解密文本文件方法实例》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266