Package com.jcraft.jsch
Class KnownHosts
java.lang.Object
com.jcraft.jsch.KnownHosts
- All Implemented Interfaces:
HostKeyRepository
public class KnownHosts extends java.lang.Object implements HostKeyRepository
-
Field Summary
Fields inherited from interface com.jcraft.jsch.HostKeyRepository
CHANGED, NOT_INCLUDED, OK -
Method Summary
Modifier and Type Method Description voidadd(HostKey hostkey, UserInfo userinfo)Adds a host keyhostkeyintcheck(java.lang.String host, byte[] key)Checks ifhostis included with thekey.HostKey[]getHostKey()Retuns a list for host keys managed in this repository.HostKey[]getHostKey(java.lang.String host, java.lang.String type)Retuns a list for host keys managed in this repository.java.lang.StringgetKnownHostsRepositoryID()Returns id of this repository.voidremove(java.lang.String host, java.lang.String type)Removes a host key if there exists mached key withhost,type.voidremove(java.lang.String host, java.lang.String type, byte[] key)Removes a host key if there exists a matched key withhost,typeandkey.protected voidsync()protected voidsync(java.lang.String foo)Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
getKnownHostsRepositoryID
public java.lang.String getKnownHostsRepositoryID()Description copied from interface:HostKeyRepositoryReturns id of this repository.- Specified by:
getKnownHostsRepositoryIDin interfaceHostKeyRepository- Returns:
- identity in String
-
check
public int check(java.lang.String host, byte[] key)Description copied from interface:HostKeyRepositoryChecks ifhostis included with thekey.- Specified by:
checkin interfaceHostKeyRepository- Returns:
- #NOT_INCLUDED, #OK or #CHANGED
- See Also:
HostKeyRepository.NOT_INCLUDED,HostKeyRepository.OK,HostKeyRepository.CHANGED
-
add
Description copied from interface:HostKeyRepositoryAdds a host keyhostkey- Specified by:
addin interfaceHostKeyRepository- Parameters:
hostkey- a host key to be addeduserinfo- a user interface for showing messages or promping inputs.- See Also:
UserInfo
-
getHostKey
Description copied from interface:HostKeyRepositoryRetuns a list for host keys managed in this repository.- Specified by:
getHostKeyin interfaceHostKeyRepository- See Also:
HostKeyRepository.getHostKey(String host, String type)
-
getHostKey
Description copied from interface:HostKeyRepositoryRetuns a list for host keys managed in this repository.- Specified by:
getHostKeyin interfaceHostKeyRepository- Parameters:
host- a hostname used in searching host keys. Ifnullis given, every host key will be listed.type- a key type used in searching host keys, and it should be "ssh-dss" or "ssh-rsa". Ifnullis given, a key type type will not be ignored.
-
remove
public void remove(java.lang.String host, java.lang.String type)Description copied from interface:HostKeyRepositoryRemoves a host key if there exists mached key withhost,type.- Specified by:
removein interfaceHostKeyRepository- See Also:
HostKeyRepository.remove(String host, String type, byte[] key)
-
remove
public void remove(java.lang.String host, java.lang.String type, byte[] key)Description copied from interface:HostKeyRepositoryRemoves a host key if there exists a matched key withhost,typeandkey.- Specified by:
removein interfaceHostKeyRepository
-
sync
protected void sync() throws java.io.IOException- Throws:
java.io.IOException
-
sync
protected void sync(java.lang.String foo) throws java.io.IOException- Throws:
java.io.IOException
-