Sample code for 30+ languages & platforms
Objective-C

SFTP Authentication using an SSH Certificate

See more SFTP Examples

Demonstrates how to SFTP authenticate using an SSH certificate.

Chilkat Objective-C Downloads

Objective-C
#import <CkoStringBuilder.h>
#import <CkoSshKey.h>
#import <CkoSFtp.h>
#import <NSString.h>

BOOL success = NO;

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

CkoStringBuilder *sbSshCert = [[CkoStringBuilder alloc] init];
success = [sbSshCert LoadFile: @"qa_data/sshCert/user_ecdsa_key-cert.pub" charset: @"utf-8"];
if (success == NO) {
    NSLog(@"%@",@"Failed to load user_ecdsa_key-cert.pub");
    return;
}

CkoStringBuilder *sbPrivKey = [[CkoStringBuilder alloc] init];
success = [sbPrivKey LoadFile: @"qa_data/sshKeys/user_ecdsa_key" charset: @"utf-8"];
if (success == NO) {
    NSLog(@"%@",@"Failed to load user_ecdsa_key");
    return;
}

CkoSshKey *key = [[CkoSshKey alloc] init];
// Provide the password if the user_ecdsa_key is stored in an encrypted format.
key.Password = @"secret";
success = [key FromOpenSshPrivateKey: [sbPrivKey GetAsString]];
if (success == NO) {
    NSLog(@"%@",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]];

CkoSFtp *sftp = [[CkoSFtp alloc] init];

NSString *hostname = @"sftp.example.com";
int port = 22;
success = [sftp Connect: hostname port: [NSNumber numberWithInt: port]];
if (success != YES) {
    NSLog(@"%@",sftp.LastErrorText);
    return;
}

success = [sftp AuthenticatePk: @"myLogin" privateKey: key];
if (success != YES) {
    NSLog(@"%@",sftp.LastErrorText);
    return;
}

NSLog(@"%@",@"Public-Key Authentication using an SSH Certificate was Successful!");