Lianja
Lianja
Authenticate an IMAP SSH Tunnel with a Private Key
See more IMAP Examples
Demonstrates the Chilkat Imap.SshAuthenticatePk method, which authenticates the SSH tunnel using a username and an SshKey private key. The first argument is the SSH login name and the second is the private key. Call SshOpenTunnel first; the matching public key must already be authorized for the login on the SSH server.
Note: The private-key path is relative to the application's current working directory. Supply the path to your own key file.
Background: Public-key authentication is the usual choice for unattended/automated SSH access: the private key stays on the client and the server is configured to trust the corresponding public key, so no reusable password travels over the wire. The
SshKey object can import keys in several formats — this example uses an OpenSSH private key.Chilkat Lianja Downloads
llSuccess = .F.
// Demonstrates the Imap.SshAuthenticatePk method, which authenticates the SSH tunnel using a
// username and a private key. The 1st argument is the SSH login name and the 2nd is an SshKey
// private key. Call SshOpenTunnel first.
loImap = createobject("CkImap")
lnSshPort = 22
llSuccess = loImap.SshOpenTunnel("ssh.example.com",lnSshPort)
if (llSuccess = .F.) then
? loImap.LastErrorText
release loImap
return
endif
// Load the SSH private key. LoadText returns the file's text, which is then imported.
loPrivKey = createobject("CkSshKey")
lcKeyStr = loPrivKey.LoadText("qa_data/id_rsa")
if (loPrivKey.LastMethodSuccess = .F.) then
? loPrivKey.LastErrorText
release loImap
release loPrivKey
return
endif
llSuccess = loPrivKey.FromOpenSshPrivateKey(lcKeyStr)
if (llSuccess = .F.) then
? loPrivKey.LastErrorText
release loImap
release loPrivKey
return
endif
// Authenticate the SSH tunnel with the private key. The matching public key must already be
// authorized for the login on the SSH server.
llSuccess = loImap.SshAuthenticatePk("sshUser",loPrivKey)
if (llSuccess = .F.) then
? loImap.LastErrorText
release loImap
release loPrivKey
return
endif
// With the SSH tunnel in place, connect and log in to the IMAP server as usual. The IMAP
// traffic flows through the tunnel automatically.
loImap.Ssl = .T.
loImap.Port = 993
llSuccess = loImap.Connect("imap.example.com")
if (llSuccess = .F.) then
? loImap.LastErrorText
release loImap
release loPrivKey
return
endif
llSuccess = loImap.Login("user@example.com","myPassword")
if (llSuccess = .F.) then
? loImap.LastErrorText
release loImap
release loPrivKey
return
endif
llSuccess = loImap.Disconnect()
if (llSuccess = .F.) then
? loImap.LastErrorText
release loImap
release loPrivKey
return
endif
llSuccess = loImap.SshCloseTunnel()
if (llSuccess = .F.) then
? loImap.LastErrorText
release loImap
release loPrivKey
return
endif
release loImap
release loPrivKey