diff options
author | Kenny Root <kenny@the-b.org> | 2007-11-17 05:58:42 +0000 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2007-11-17 05:58:42 +0000 |
commit | dfa41d090260eed63f3d8510571a2f6236a5ff45 (patch) | |
tree | 1eaca308ba9bb913161edf83bfef5f9295784e56 /src/org/theb/ssh/InteractiveHostKeyVerifier.java | |
parent | edfccaafe3e754ed124afa67465b6044eacd3987 (diff) | |
download | connectbot-dfa41d090260eed63f3d8510571a2f6236a5ff45.tar.gz connectbot-dfa41d090260eed63f3d8510571a2f6236a5ff45.tar.bz2 connectbot-dfa41d090260eed63f3d8510571a2f6236a5ff45.zip |
Initial import.
Diffstat (limited to 'src/org/theb/ssh/InteractiveHostKeyVerifier.java')
-rw-r--r-- | src/org/theb/ssh/InteractiveHostKeyVerifier.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/org/theb/ssh/InteractiveHostKeyVerifier.java b/src/org/theb/ssh/InteractiveHostKeyVerifier.java new file mode 100644 index 0000000..a461724 --- /dev/null +++ b/src/org/theb/ssh/InteractiveHostKeyVerifier.java @@ -0,0 +1,14 @@ +package org.theb.ssh; + +import com.trilead.ssh2.ServerHostKeyVerifier; + +public class InteractiveHostKeyVerifier implements ServerHostKeyVerifier { + + public boolean verifyServerHostKey(String hostname, int port, + String serverHostKeyAlgorithm, byte[] serverHostKey) + throws Exception { + // TODO Auto-generated method stub + return true; + } + +} |