| Package | Description |
|---|---|
| ssh |
| Modifier and Type | Method and Description |
|---|---|
SshLibrary.ssh_private_key |
SshLibrary.privatekey_from_file(SshLibrary.ssh_session session,
com.sun.jna.Pointer filename,
int type,
com.sun.jna.Pointer passphrase)
|
SshLibrary.ssh_private_key |
SshLibrary.privatekey_from_file(SshLibrary.ssh_session session,
java.lang.String filename,
int type,
java.lang.String passphrase)
Original signature :
ssh_private_key privatekey_from_file(ssh_session, const char*, int, const char*)native declaration : /usr/include/libssh/legacy.h:81 |
| Modifier and Type | Method and Description |
|---|---|
void |
SshLibrary.privatekey_free(SshLibrary.ssh_private_key prv)
Original signature :
void privatekey_free(ssh_private_key)native declaration : /usr/include/libssh/legacy.h:80 |
SshLibrary.ssh_public_key |
SshLibrary.publickey_from_privatekey(SshLibrary.ssh_private_key prv)
Original signature :
ssh_public_key publickey_from_privatekey(ssh_private_key)native declaration : /usr/include/libssh/legacy.h:88 |
int |
SshLibrary.ssh_privatekey_type(SshLibrary.ssh_private_key privatekey)
Original signature :
ssh_keytypes_e ssh_privatekey_type(ssh_private_key)native declaration : /usr/include/libssh/libssh.h:348 |
int |
SshLibrary.ssh_userauth_pubkey(SshLibrary.ssh_session session,
com.sun.jna.Pointer username,
SshLibrary.ssh_string publickey,
SshLibrary.ssh_private_key privatekey)
Deprecated.
use the safer methods
SshLibrary.ssh_userauth_pubkey(ssh.SshLibrary.ssh_session, java.lang.String, ssh.SshLibrary.ssh_string, ssh.SshLibrary.ssh_private_key) and SshLibrary.ssh_userauth_pubkey(ssh.SshLibrary.ssh_session, com.sun.jna.Pointer, ssh.SshLibrary.ssh_string, ssh.SshLibrary.ssh_private_key) instead |
int |
SshLibrary.ssh_userauth_pubkey(SshLibrary.ssh_session session,
java.lang.String username,
SshLibrary.ssh_string publickey,
SshLibrary.ssh_private_key privatekey)
Original signature :
int ssh_userauth_pubkey(ssh_session, const char*, ssh_string, ssh_private_key)native declaration : /usr/include/libssh/libssh.h:392 |
Copyright © 2018. All rights reserved.