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
(Unicode C) Generate RSA Key for SFTPSee more SSH Key ExamplesGenerates an 2048-bit RSA key for SSH/SFTP. Your application will use the generated private key. The public key is to be uploaded to the server and stored in the ".ssh" directory located under the HOME directory of the SSH/SFTP user account.
#include <C_CkSshKeyW.h> void ChilkatSample(void) { HCkSshKeyW key; int numBits; int exponent; BOOL success; const wchar_t *exportedKey; BOOL exportEncrypted; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. key = CkSshKeyW_Create(); numBits = 2048; exponent = 65537; success = CkSshKeyW_GenerateRsaKey(key,numBits,exponent); if (success != TRUE) { wprintf(L"Bad params passed to RSA key generation method.\n"); CkSshKeyW_Dispose(key); return; } // Note: Generating a public/private key pair is CPU intensive // and may take a short amount of time (more than few seconds, // but less than a minute). // Export the RSA private key to encrypted PuTTY format: CkSshKeyW_putPassword(key,L"secret"); exportEncrypted = TRUE; exportedKey = CkSshKeyW_toPuttyPrivateKey(key,exportEncrypted); success = CkSshKeyW_SaveText(key,exportedKey,L"qa_output/rsa_privkey_putty_encrypted.ppk"); // Export the public key to openSSH format.. exportedKey = CkSshKeyW_toOpenSshPublicKey(key); success = CkSshKeyW_SaveText(key,exportedKey,L"qa_output/id_rsa.pub"); // Sample id_rsa.pub: // ssh-rsa // AAAAB3NzaC1yc2EAAAADAQABAAA.....6tK3+vjwX/YC9dIXUz2Z wprintf(L"Finished. Upload the id_rsa.pub to your .ssh directory located on the SSH/SFTP server under your user account's HOME directory\n"); wprintf(L"(Your HOME directory is the default directory you are in when you login via an SSH terminal.)\n"); // After the id_rsa.pub is uploaded to your user account on the SSH/SFTP server, you can authenticate using the private key. // Your application will load the private key (.ppk) as shown here: Load SSH/SFTP Private Key .ppk // and then authenticate by calling AuthenticatePk (or AuthenticatePwPk). CkSshKeyW_Dispose(key); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.