comparison src/ch/ethz/ssh2/transport/KexState.java @ 307:071eccdff8ea ganymed

fix java formatting
author Carl Byington <carl@five-ten-sg.com>
date Wed, 30 Jul 2014 14:16:58 -0700
parents ca5dd224a87b
children 9e42082d1f93
comparison
equal deleted inserted replaced
305:d2b303406d63 307:071eccdff8ea
19 * KexState. 19 * KexState.
20 * 20 *
21 * @author Christian Plattner 21 * @author Christian Plattner
22 * @version 2.50, 03/15/10 22 * @version 2.50, 03/15/10
23 */ 23 */
24 public class KexState 24 public class KexState {
25 { 25 public PacketKexInit localKEX;
26 public PacketKexInit localKEX; 26 public PacketKexInit remoteKEX;
27 public PacketKexInit remoteKEX; 27 public NegotiatedParameters np;
28 public NegotiatedParameters np; 28 public int state = 0;
29 public int state = 0;
30 29
31 public BigInteger K; 30 public BigInteger K;
32 public byte[] H; 31 public byte[] H;
33 32
34 public byte[] remote_hostkey; 33 public byte[] remote_hostkey;
35 34
36 public DhExchange dhx; 35 public DhExchange dhx;
37 public DhGroupExchange dhgx; 36 public DhGroupExchange dhgx;
38 public DHGexParameters dhgexParameters; 37 public DHGexParameters dhgexParameters;
39 38
40 public KeyPair local_dsa_key; 39 public KeyPair local_dsa_key;
41 public KeyPair local_rsa_key; 40 public KeyPair local_rsa_key;
42 public KeyPair local_ec_key; 41 public KeyPair local_ec_key;
43 } 42 }