Rust Requires Chilkat v11.0.0+
Rust
SFTP use Cert's Private Key for Authentication (Windows)
See more SFTP Examples
Demonstrates how to use the private key of a pre-installed certificate (on Windows) for SFTP authentication. The certificate's private key must be marked as "exportable" when originally installed.Chilkat Rust Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let cert = chilkat::Cert::new();
// Load the certificate from the Windows certificate store
if cert.load_by_common_name("my_cert_common_name").is_err() {
println!("{}", cert.last_error_text());
return;
}
// Get the private key.
let priv_key = chilkat::PrivateKey::new();
if cert.get_private_key(&priv_key).is_err() {
println!("{}", cert.last_error_text());
return;
}
let Ok(priv_key_pem) = priv_key.get_pkcs8_pem() else {
println!("{}", priv_key.last_error_text());
return;
};
let ssh_key = chilkat::SshKey::new();
if ssh_key.from_open_ssh_private_key(&priv_key_pem).is_err() {
println!("{}", ssh_key.last_error_text());
return;
}
// Connect to an SSH/SFTP server
let sftp = chilkat::SFtp::new();
if sftp.connect("sftp.example.com", 22).is_err() {
println!("{}", sftp.last_error_text());
return;
}
// Authenticate with the SSH server using a username + private key.
// (The private key serves as the password. The username identifies
// the SSH user account on the server.)
if sftp.authenticate_pk("mySshLogin", &ssh_key).is_err() {
println!("{}", sftp.last_error_text());
return;
}
println!("OK, the connection and authentication with the SSH server is completed.");
// This example is only to show the connection + authentication using a private key associated with a certificate in the Windows certificate store...