![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C++) SSH Authentication using an SSH CertificateSee more SSH ExamplesDemonstrates how to authenticate using an SSH certificate.Note: This example requires Chilkat v11.0.0 or greater. For more information, see https://www.chilkatsoft.com/understanding_ssh_certificates.asp
#include <CkStringBuilderW.h> #include <CkSshKeyW.h> #include <CkSshW.h> void ChilkatSample(void) { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkStringBuilderW sbSshCert; bool success = sbSshCert.LoadFile(L"qa_data/sshCert/user_ecdsa_key-cert.pub",L"utf-8"); if (success == false) { wprintf(L"Failed to load user_ecdsa_key-cert.pub\n"); return; } CkStringBuilderW sbPrivKey; success = sbPrivKey.LoadFile(L"qa_data/sshKeys/user_ecdsa_key",L"utf-8"); if (success == false) { wprintf(L"Failed to load user_ecdsa_key\n"); return; } CkSshKeyW key; // Provide the password if the user_ecdsa_key is stored in an encrypted format. key.put_Password(L"secret"); success = key.FromOpenSshPrivateKey(sbPrivKey.getAsString()); if (success == false) { wprintf(L"%s\n",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()); CkSshW ssh; const wchar_t *hostname = L"ssh.example.com"; int port = 22; success = ssh.Connect(hostname,port); if (success != true) { wprintf(L"%s\n",ssh.lastErrorText()); return; } success = ssh.AuthenticatePk(L"myLogin",key); if (success != true) { wprintf(L"%s\n",ssh.lastErrorText()); return; } wprintf(L"Public-Key Authentication using an SSH Certificate was Successful!\n"); } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.