Home | History | Annotate | Download | only in ssh2

Lines Matching refs:algos

1225 	 * @param algos An array of allowed server host key algorithms.
1231 public synchronized void setServerHostKeyAlgorithms(String[] algos)
1233 if ((algos == null) || (algos.length == 0))
1236 algos = removeDuplicates(algos);
1237 KexManager.checkServerHostkeyAlgorithmsList(algos);
1238 cryptoWishList.serverHostKeyAlgorithms = algos;