Home
last modified time | relevance | path

Searched refs:KnownHosts (Results 1 – 5 of 5) sorted by relevance

/external/ganymed-ssh2/examples/
DSimpleVerifier.java5 import ch.ethz.ssh2.KnownHosts;
10 KnownHosts database;
16 public SimpleVerifier(KnownHosts database) in SimpleVerifier()
31 case KnownHosts.HOSTKEY_IS_OK: in verifyServerHostKey()
35 case KnownHosts.HOSTKEY_IS_NEW: in verifyServerHostKey()
46 case KnownHosts.HOSTKEY_HAS_CHANGED: in verifyServerHostKey()
DUsingKnownHosts.java12 import ch.ethz.ssh2.KnownHosts;
18 static KnownHosts database = new KnownHosts();
DSwingShell.java32 import ch.ethz.ssh2.KnownHosts;
67 KnownHosts database = new KnownHosts();
389 case KnownHosts.HOSTKEY_IS_OK: in verifyServerHostKey()
392 case KnownHosts.HOSTKEY_IS_NEW: in verifyServerHostKey()
396 case KnownHosts.HOSTKEY_HAS_CHANGED: in verifyServerHostKey()
406 String hexFingerprint = KnownHosts.createHexFingerprint(serverHostKeyAlgorithm, serverHostKey); in verifyServerHostKey()
407 String bubblebabbleFingerprint = KnownHosts.createBubblebabbleFingerprint(serverHostKeyAlgorithm, in verifyServerHostKey()
420 String hashedHostname = KnownHosts.createHashedHostname(hostname); in verifyServerHostKey()
430 KnownHosts.addHostkeyToFile(new File(knownHostPath), new String[] { hashedHostname }, in verifyServerHostKey()
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
DKnownHosts.java49 public class KnownHosts class
67 …private final LinkedList<KnownHostsEntry> publicKeys = new LinkedList<KnownHosts.KnownHostsEntry>(…
69 public KnownHosts() in KnownHosts() method in KnownHosts
73 public KnownHosts(char[] knownHostsData) throws IOException in KnownHosts() method in KnownHosts
78 public KnownHosts(String knownHosts) throws IOException in KnownHosts() method in KnownHosts
83 public KnownHosts(File knownHosts) throws IOException in KnownHosts() method in KnownHosts
/external/ganymed-ssh2/
DHISTORY.txt21 - Fixed a bug in KnownHosts.getPreferredServerHostkeyAlgorithmOrder (it always returned null, which…
140 - Fixed a bug in KnownHosts.addHostkeyToFile. Hostnames were converted to lowercase which is
258 - Added rather complete support for known_hosts files (in KnownHosts.java).