![]() |
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
(Tcl) SFTP Authentication using an SSH CertificateSee more SFTP ExamplesDemonstrates how to SFTP 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
load ./chilkat.dll # This example assumes the Chilkat API to have been previously unlocked. # See Global Unlock Sample for sample code. set sbSshCert [new_CkStringBuilder] set success [CkStringBuilder_LoadFile $sbSshCert "qa_data/sshCert/user_ecdsa_key-cert.pub" "utf-8"] if {$success == 0} then { puts "Failed to load user_ecdsa_key-cert.pub" delete_CkStringBuilder $sbSshCert exit } set sbPrivKey [new_CkStringBuilder] set success [CkStringBuilder_LoadFile $sbPrivKey "qa_data/sshKeys/user_ecdsa_key" "utf-8"] if {$success == 0} then { puts "Failed to load user_ecdsa_key" delete_CkStringBuilder $sbSshCert delete_CkStringBuilder $sbPrivKey exit } set key [new_CkSshKey] # Provide the password if the user_ecdsa_key is stored in an encrypted format. CkSshKey_put_Password $key "secret" set success [CkSshKey_FromOpenSshPrivateKey $key [CkStringBuilder_getAsString $sbPrivKey]] if {$success == 0} then { puts [CkSshKey_lastErrorText $key] delete_CkStringBuilder $sbSshCert delete_CkStringBuilder $sbPrivKey delete_CkSshKey $key exit } # Indicate that the SSH certificate is to be used for authentication. # The UseSshCertificate method was added in Chilkat v11.0.0 CkSshKey_UseSshCertificate $key [CkStringBuilder_getAsString $sbSshCert] set sftp [new_CkSFtp] set hostname "sftp.example.com" set port 22 set success [CkSFtp_Connect $sftp $hostname $port] if {$success != 1} then { puts [CkSFtp_lastErrorText $sftp] delete_CkStringBuilder $sbSshCert delete_CkStringBuilder $sbPrivKey delete_CkSshKey $key delete_CkSFtp $sftp exit } set success [CkSFtp_AuthenticatePk $sftp "myLogin" $key] if {$success != 1} then { puts [CkSFtp_lastErrorText $sftp] delete_CkStringBuilder $sbSshCert delete_CkStringBuilder $sbPrivKey delete_CkSshKey $key delete_CkSFtp $sftp exit } puts "Public-Key Authentication using an SSH Certificate was Successful!" delete_CkStringBuilder $sbSshCert delete_CkStringBuilder $sbPrivKey delete_CkSshKey $key delete_CkSFtp $sftp |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.