![]() |
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
(Swift) 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
func chilkatTest() { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let sbSshCert = CkoStringBuilder()! var success: Bool = sbSshCert.loadFile("qa_data/sshCert/user_ecdsa_key-cert.pub", charset: "utf-8") if success == false { print("Failed to load user_ecdsa_key-cert.pub") return } let sbPrivKey = CkoStringBuilder()! success = sbPrivKey.loadFile("qa_data/sshKeys/user_ecdsa_key", charset: "utf-8") if success == false { print("Failed to load user_ecdsa_key") return } let key = CkoSshKey()! // 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 { print("\(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()) let sftp = CkoSFtp()! var hostname: String? = "sftp.example.com" var port: Int = 22 success = sftp.connect(hostname, port: port) if success != true { print("\(sftp.lastErrorText!)") return } success = sftp.authenticatePk("myLogin", privateKey: key) if success != true { print("\(sftp.lastErrorText!)") return } print("Public-Key Authentication using an SSH Certificate was Successful!") } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.