Sample code for 30+ languages & platforms
C#

SSH Authentication using an SSH Certificate

See more SSH Examples

Demonstrates how to authenticate using an SSH certificate.

Chilkat C# Downloads

C#
bool success = false;

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

Chilkat.StringBuilder sbSshCert = new Chilkat.StringBuilder();
success = sbSshCert.LoadFile("qa_data/sshCert/user_ecdsa_key-cert.pub","utf-8");
if (success == false) {
    Debug.WriteLine("Failed to load user_ecdsa_key-cert.pub");
    return;
}

Chilkat.StringBuilder sbPrivKey = new Chilkat.StringBuilder();
success = sbPrivKey.LoadFile("qa_data/sshKeys/user_ecdsa_key","utf-8");
if (success == false) {
    Debug.WriteLine("Failed to load user_ecdsa_key");
    return;
}

Chilkat.SshKey key = new 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 == false) {
    Debug.WriteLine(key.LastErrorText);
    return;
}

// 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());

Chilkat.Ssh ssh = new Chilkat.Ssh();

string hostname = "ssh.example.com";
int port = 22;
success = ssh.Connect(hostname,port);
if (success != true) {
    Debug.WriteLine(ssh.LastErrorText);
    return;
}

success = ssh.AuthenticatePk("myLogin",key);
if (success != true) {
    Debug.WriteLine(ssh.LastErrorText);
    return;
}

Debug.WriteLine("Public-Key Authentication using an SSH Certificate was Successful!");