Uses of Class
com.github.robtimus.filesystems.sftp.Identity
-
-
Uses of Identity in com.github.robtimus.filesystems.sftp
Methods in com.github.robtimus.filesystems.sftp that return Identity Modifier and Type Method Description static IdentityIdentity. fromData(String name, byte[] privateKey, byte[] publicKey, byte[] passphrase)Creates a key pair from a private key and public key.static IdentityIdentity. fromFiles(File privateKeyFile)Creates a key pair from private key and public key files.static IdentityIdentity. fromFiles(File privateKeyFile, byte[] passphrase)Creates a key pair from private key and public key files.static IdentityIdentity. fromFiles(File privateKeyFile, File publicKeyFile, byte[] passphrase)Creates a key pair from private key and public key files.static IdentityIdentity. fromFiles(File privateKeyFile, String passphrase)Creates a key pair from private key and public key files.Methods in com.github.robtimus.filesystems.sftp with parameters of type Identity Modifier and Type Method Description SFTPEnvironmentSFTPEnvironment. withIdentities(Identity... identities)Stores several identity to use.SFTPEnvironmentSFTPEnvironment. withIdentity(Identity identity)Stores an identity to use.Method parameters in com.github.robtimus.filesystems.sftp with type arguments of type Identity Modifier and Type Method Description SFTPEnvironmentSFTPEnvironment. withIdentities(Collection<Identity> identities)Stores several identity to use.
-