Home | History | Annotate | Download | only in transport
      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.transport;
      6 
      7 /**
      8  * KexParameters.
      9  *
     10  * @author Christian Plattner
     11  * @version 2.50, 03/15/10
     12  */
     13 public class KexParameters
     14 {
     15 	public byte[] cookie;
     16 	public String[] kex_algorithms;
     17 	public String[] server_host_key_algorithms;
     18 	public String[] encryption_algorithms_client_to_server;
     19 	public String[] encryption_algorithms_server_to_client;
     20 	public String[] mac_algorithms_client_to_server;
     21 	public String[] mac_algorithms_server_to_client;
     22 	public String[] compression_algorithms_client_to_server;
     23 	public String[] compression_algorithms_server_to_client;
     24 	public String[] languages_client_to_server;
     25 	public String[] languages_server_to_client;
     26 	public boolean first_kex_packet_follows;
     27 	public int reserved_field1;
     28 }
     29