aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/theb/ssh/InteractiveHostKeyVerifier.java
blob: a461724b5d9bb049da2b52621f51fb269e668b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
	}

}