Sample code for 30+ languages & platforms
PowerShell

SSH Authentication using an SSH Certificate

See more SSH Examples

Demonstrates how to authenticate using an SSH certificate.

Chilkat PowerShell Downloads

PowerShell
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"

$success = $false

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

$sbSshCert = New-Object Chilkat.StringBuilder
$success = $sbSshCert.LoadFile("qa_data/sshCert/user_ecdsa_key-cert.pub","utf-8")
if ($success -eq $false) {
    $("Failed to load user_ecdsa_key-cert.pub")
    exit
}

$sbPrivKey = New-Object Chilkat.StringBuilder
$success = $sbPrivKey.LoadFile("qa_data/sshKeys/user_ecdsa_key","utf-8")
if ($success -eq $false) {
    $("Failed to load user_ecdsa_key")
    exit
}

$key = New-Object Chilkat.SshKey
# Provide the password if the user_ecdsa_key is stored in an encrypted format.
$key.Password = "secret"
$success = $key.FromOpenSshPrivateKey($sbPrivKey.GetAsString())
if ($success -eq $false) {
    $($key.LastErrorText)
    exit
}

# Indicate that the SSH certificate is to be used for authentication.
# The UseSshCertificate method was added in Chilkat v11.0.0
$key.UseSshCertificate($sbSshCert.GetAsString())

$ssh = New-Object Chilkat.Ssh

$hostname = "ssh.example.com"
$port = 22
$success = $ssh.Connect($hostname,$port)
if ($success -ne $true) {
    $($ssh.LastErrorText)
    exit
}

$success = $ssh.AuthenticatePk("myLogin",$key)
if ($success -ne $true) {
    $($ssh.LastErrorText)
    exit
}

$("Public-Key Authentication using an SSH Certificate was Successful!")