Implements the AbstractKnownHostsKeyVerification to provide host key verification through the console.
AbstractKnownHostsKeyVerification
536537538539540541542
* * @see #connect(com.sshtools.j2ssh.configuration.SshConnectionProperties) * @since 0.2.0 */ public void connect(String hostname) throws IOException { connect(hostname, 22, new ConsoleKnownHostsKeyVerification()); }
610611612613614615616
* * @see #connect(com.sshtools.j2ssh.configuration.SshConnectionProperties) * @since 0.2.0 */ public void connect(String hostname, int port) throws IOException { connect(hostname, port, new ConsoleKnownHostsKeyVerification()); }
714715716717718719720
* * @since 0.2.0 */ public void connect(SshConnectionProperties properties) throws IOException { connect(properties, new ConsoleKnownHostsKeyVerification()); }
537538539540541542543
611612613614615616617
715716717718719720721