• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Powershell实现加密解密文本文件方法实例

    适用于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中使用正则和ValidateSet验证参数合法性
    下一篇:Powershell中获取所有磁盘盘符的方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

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