diff 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
line wrap: on
line diff
--- a/src/ch/ethz/ssh2/transport/KexState.java	Wed Jul 30 12:09:51 2014 -0700
+++ b/src/ch/ethz/ssh2/transport/KexState.java	Wed Jul 30 14:16:58 2014 -0700
@@ -21,23 +21,22 @@
  * @author Christian Plattner
  * @version 2.50, 03/15/10
  */
-public class KexState
-{
-	public PacketKexInit localKEX;
-	public PacketKexInit remoteKEX;
-	public NegotiatedParameters np;
-	public int state = 0;
+public class KexState {
+    public PacketKexInit localKEX;
+    public PacketKexInit remoteKEX;
+    public NegotiatedParameters np;
+    public int state = 0;
 
-	public BigInteger K;
-	public byte[] H;
+    public BigInteger K;
+    public byte[] H;
 
-	public byte[] remote_hostkey;
+    public byte[] remote_hostkey;
 
-	public DhExchange dhx;
-	public DhGroupExchange dhgx;
-	public DHGexParameters dhgexParameters;
+    public DhExchange dhx;
+    public DhGroupExchange dhgx;
+    public DHGexParameters dhgexParameters;
 
-	public KeyPair local_dsa_key;
-	public KeyPair local_rsa_key;
-	public KeyPair local_ec_key;
+    public KeyPair local_dsa_key;
+    public KeyPair local_rsa_key;
+    public KeyPair local_ec_key;
 }