Lines Matching refs:hostname
44 * - Adding a server hostkey to a known_hosts file (+hashing the hostname for security)
375 public boolean verifyServerHostKey(String hostname, int port, String serverHostKeyAlgorithm,
378 final String host = hostname;
385 int result = database.verifyHostkey(hostname, serverHostKeyAlgorithm, serverHostKey);
418 /* Be really paranoid. We use a hashed hostname entry */
420 String hashedHostname = KnownHosts.createHashedHostname(hostname);
516 String hostname;
519 public ConnectionThread(String hostname, String username)
521 this.hostname = hostname;
527 Connection conn = new Connection(hostname);
537 String[] hostkeyAlgos = database.getPreferredServerHostkeyAlgorithmOrder(hostname);
669 TerminalDialog td = new TerminalDialog(loginFrame, username + "@" + hostname, sess, x_width, y_width);
710 String hostname = hostField.getText().trim();
713 hostname.length() == 0) || (username.length() == 0))
723 ConnectionThread ct = new ConnectionThread(hostname, username);
732 hostLabel = new JLabel("Hostname:");