Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(AutoIt) Load PuTTY Private KeyLoads a PuTTY private key into an SSH key object.
$oSb = ObjCreate("Chilkat.StringBuilder") Local $bCrlf = True $oSb.AppendLine("PuTTY-User-Key-File-2: ssh-rsa",$bCrlf) $oSb.AppendLine("Encryption: aes256-cbc",$bCrlf) $oSb.AppendLine("Comment: rsa-key-20161121",$bCrlf) $oSb.AppendLine("Public-Lines: 6",$bCrlf) $oSb.AppendLine("AAAAB3NzaC1yc2EAAAABJQAAAQEArIVxZTGYjqqNegJeMqgZzXKuX3YtxmD4DPnQ",$bCrlf) $oSb.AppendLine("K01SXoR9UA4wl6RJK5FGonI5spVnddr6HJny0eY5/RmV1dyL0fNdH2pfnHHoTd9B",$bCrlf) $oSb.AppendLine("uXG0PcTn4BqJFlybC6NNaGaByqpNPaOgjJIMHXTaeCuDuzwP02f3UKSfLAFdvUNP",$bCrlf) $oSb.AppendLine("fX3yrMRabjVcHJpgUn535Y9Y3ZphSFssiElLpp1vo6QLsdiAl0wgU4HLw9Dfg8sh",$bCrlf) $oSb.AppendLine("p3zgAufYUUIx2HChITJ7OO/PH5GEbPvJFbYH4Wx33GEe56JCF9QxxDCqNxsPMrvu",$bCrlf) $oSb.AppendLine("mqkSIPIELFl5zVYSFD9PiL8RZQcPJGq5zbF9+szsS/6DSH8biw==",$bCrlf) $oSb.AppendLine("Private-Lines: 14",$bCrlf) $oSb.AppendLine("SVqUm9zBUN6zaAaUY6TLnIXAhxqv4s1UhzukcN7Ns0Fs1EqdDP4nVMKgmiDxHaAj",$bCrlf) $oSb.AppendLine("ucb1PLv7uj2eGt69E+HKH4AC2LtJZNH4qLw+p8QKqdN79oRAMHwtS4cU88eeQ91t",$bCrlf) $oSb.AppendLine("2W3wzmTzvYFlE6VbUr3bNl3f68OCQHz+7YJuL8g0eclNuveHB/VmBqnek1LL/cRY",$bCrlf) $oSb.AppendLine("wmk8wyzHRl7X8fyjGX0PiOPyVwXBDJFNjjKAdrRCRS0Cc4PWAb/18qrA9ApArQVk",$bCrlf) $oSb.AppendLine("a5miOMfrXFF2Vg3JyNgfdDilNKkry9x5oTtfueZkFgu/6pofP5qrTstr+BmB16mu",$bCrlf) $oSb.AppendLine("MxcDRF+jOm9XvU1OnrzQ9rBzuaHEfhSHqlKyMGTDuzRtNyxlDBgK4DaZ2z1FJQGF",$bCrlf) $oSb.AppendLine("63p36KgVqx571PUJ8P/28VUb6s/OtXcjhxxvhC8Eo0wrTdjzDiX+IovdjOhWgn4v",$bCrlf) $oSb.AppendLine("xugaYocotTbhqq+O1w9xYtmG8fP921+TIpHzCkE8QTJzLJ40pemKZ+TAOmhb0OUQ",$bCrlf) $oSb.AppendLine("jemqmRohcxx7NEoZ0TsoAe6i+GQJ2cEE7LcNcSX3V66AkyTsTieqk1nSxyHyoF+l",$bCrlf) $oSb.AppendLine("rTaVOhFM5H8Etzv94SP3c1if3Qa9cmZaEmfaqrS94bzX+OY/zRIFweT0BeMo3Uac",$bCrlf) $oSb.AppendLine("fP6gBDBiLYZeRURcx0mYRdNYlssaKoYLA6c7F3ggo34VfgD6LP+ZYnG8yAXGXSPr",$bCrlf) $oSb.AppendLine("lgrfdg/szqSsOKVdkoGTkVy+BgrhITnFIs8TLZsrtSEPmXjEa+QvdP6FPsyN5u6P",$bCrlf) $oSb.AppendLine("8s0i8EC0KT0YA77Ps29DEU3fxsXVSc9Xd9qdiWfJ0ce2hOsTwxL1gxtXUKP4xCzm",$bCrlf) $oSb.AppendLine("oXaWLFajiws2EjgBbwREj12v0I2N4xrpf/PeJq22EvWLYm9H94DdFrkm0b4p6Kmu",$bCrlf) $oSb.AppendLine("Private-MAC: ef04289f158f498b8050e19f1630b4764fe64ab9",$bCrlf) $oSshKey = ObjCreate("Chilkat.SshKey") ; Must specify a password for this PuTTY private key because it is encrypted. $oSshKey.Password = "secret" Local $bSuccess = $oSshKey.FromPuttyPrivateKey($oSb.GetAsString()) If ($bSuccess <> True) Then ConsoleWrite($oSshKey.LastErrorText & @CRLF) ConsoleWrite("Failed." & @CRLF) EndIf ConsoleWrite("success = " & $bSuccess & @CRLF) |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.