![]() |
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 <C_CkStringBuilderW.h> #include <C_CkSshKeyW.h> #include <C_CkSshW.h> void ChilkatSample(void) { HCkStringBuilderW sbSshCert; BOOL success; HCkStringBuilderW sbPrivKey; HCkSshKeyW key; HCkSshW ssh; const wchar_t *hostname; int port; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. sbSshCert = CkStringBuilderW_Create(); success = CkStringBuilderW_LoadFile(sbSshCert,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"); CkStringBuilderW_Dispose(sbSshCert); return; } sbPrivKey = CkStringBuilderW_Create(); success = CkStringBuilderW_LoadFile(sbPrivKey,L"qa_data/sshKeys/user_ecdsa_key",L"utf-8"); if (success == FALSE) { wprintf(L"Failed to load user_ecdsa_key\n"); CkStringBuilderW_Dispose(sbSshCert); CkStringBuilderW_Dispose(sbPrivKey); return; } key = CkSshKeyW_Create(); // Provide the password if the user_ecdsa_key is stored in an encrypted format. CkSshKeyW_putPassword(key,L"secret"); success = CkSshKeyW_FromOpenSshPrivateKey(key,CkStringBuilderW_getAsString(sbPrivKey)); if (success == FALSE) { wprintf(L"%s\n",CkSshKeyW_lastErrorText(key)); CkStringBuilderW_Dispose(sbSshCert); CkStringBuilderW_Dispose(sbPrivKey); CkSshKeyW_Dispose(key); return; } // Indicate that the SSH certificate is to be used for authentication. // The UseSshCertificate method was added in Chilkat v11.0.0 CkSshKeyW_UseSshCertificate(key,CkStringBuilderW_getAsString(sbSshCert)); ssh = CkSshW_Create(); hostname = L"ssh.example.com"; port = 22; success = CkSshW_Connect(ssh,hostname,port); if (success != TRUE) { wprintf(L"%s\n",CkSshW_lastErrorText(ssh)); CkStringBuilderW_Dispose(sbSshCert); CkStringBuilderW_Dispose(sbPrivKey); CkSshKeyW_Dispose(key); CkSshW_Dispose(ssh); return; } success = CkSshW_AuthenticatePk(ssh,L"myLogin",key); if (success != TRUE) { wprintf(L"%s\n",CkSshW_lastErrorText(ssh)); CkStringBuilderW_Dispose(sbSshCert); CkStringBuilderW_Dispose(sbPrivKey); CkSshKeyW_Dispose(key); CkSshW_Dispose(ssh); return; } wprintf(L"Public-Key Authentication using an SSH Certificate was Successful!\n"); CkStringBuilderW_Dispose(sbSshCert); CkStringBuilderW_Dispose(sbPrivKey); CkSshKeyW_Dispose(key); CkSshW_Dispose(ssh); } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.