0
|
1
|
|
2 package com.trilead.ssh2.crypto;
|
|
3
|
|
4 import com.trilead.ssh2.compression.CompressionFactory;
|
|
5 import com.trilead.ssh2.crypto.cipher.BlockCipherFactory;
|
|
6 import com.trilead.ssh2.crypto.digest.MAC;
|
|
7 import com.trilead.ssh2.transport.KexManager;
|
|
8
|
|
9
|
|
10 /**
|
|
11 * CryptoWishList.
|
|
12 *
|
|
13 * @author Christian Plattner, plattner@trilead.com
|
|
14 * @version $Id: CryptoWishList.java,v 1.1 2007/10/15 12:49:56 cplattne Exp $
|
|
15 */
|
|
16 public class CryptoWishList {
|
|
17 public String[] kexAlgorithms = KexManager.getDefaultKexAlgorithmList();
|
|
18 public String[] serverHostKeyAlgorithms = KexManager.getDefaultServerHostkeyAlgorithmList();
|
|
19 public String[] c2s_enc_algos = BlockCipherFactory.getDefaultCipherList();
|
|
20 public String[] s2c_enc_algos = BlockCipherFactory.getDefaultCipherList();
|
|
21 public String[] c2s_mac_algos = MAC.getMacList();
|
|
22 public String[] s2c_mac_algos = MAC.getMacList();
|
|
23 public String[] c2s_comp_algos = CompressionFactory.getDefaultCompressorList();
|
|
24 public String[] s2c_comp_algos = CompressionFactory.getDefaultCompressorList();
|
|
25 }
|