• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2006-2011 Christian Plattner. All rights reserved.
3  * Please refer to the LICENSE.txt for licensing details.
4  */
5 package ch.ethz.ssh2.crypto;
6 
7 import ch.ethz.ssh2.crypto.cipher.BlockCipherFactory;
8 import ch.ethz.ssh2.crypto.digest.MAC;
9 import ch.ethz.ssh2.transport.KexManager;
10 
11 /**
12  * CryptoWishList.
13  *
14  * @author Christian Plattner
15  * @version 2.50, 03/15/10
16  */
17 public class CryptoWishList
18 {
19 	public String[] kexAlgorithms = KexManager.getDefaultKexAlgorithmList();
20 	public String[] serverHostKeyAlgorithms = KexManager.getDefaultServerHostkeyAlgorithmList();
21 	public String[] c2s_enc_algos = BlockCipherFactory.getDefaultCipherList();
22 	public String[] s2c_enc_algos = BlockCipherFactory.getDefaultCipherList();
23 	public String[] c2s_mac_algos = MAC.getMacList();
24 	public String[] s2c_mac_algos = MAC.getMacList();
25 }
26