Mercurial > 510Connectbot
diff src/ch/ethz/ssh2/transport/KexState.java @ 280:51d5f434ef6b ganymed
start conversion from trilead to ganymed
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 18 Jul 2014 17:00:35 -0700 |
parents | d7e088fa2123 |
children | 4ec87de11e71 |
line wrap: on
line diff
--- a/src/ch/ethz/ssh2/transport/KexState.java Fri Jul 18 16:47:22 2014 -0700 +++ b/src/ch/ethz/ssh2/transport/KexState.java Fri Jul 18 17:00:35 2014 -0700 @@ -9,12 +9,15 @@ import ch.ethz.ssh2.crypto.dh.DhGroupExchange; import java.math.BigInteger; import ch.ethz.ssh2.packets.PacketKexInit; -import ch.ethz.ssh2.signature.DSAPrivateKey; +import java.security.KeyPair; +import java.security.PrivateKey; +import java.security.interfaces.DSAPrivateKey; import java.security.interfaces.RSAPrivateKey; +import java.security.interfaces.ECPrivateKey; /** * KexState. - * + * * @author Christian Plattner * @version 2.50, 03/15/10 */ @@ -27,13 +30,14 @@ public BigInteger K; public byte[] H; - + public byte[] remote_hostkey; - + public DhExchange dhx; public DhGroupExchange dhgx; public DHGexParameters dhgexParameters; - + public DSAPrivateKey local_dsa_key; public RSAPrivateKey local_rsa_key; + public ECPrivateKey local_ec_key; }