diff src/ch/ethz/ssh2/transport/KexManager.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 486df527ddc5
line wrap: on
line diff
--- a/src/ch/ethz/ssh2/transport/KexManager.java	Fri Jul 18 16:47:22 2014 -0700
+++ b/src/ch/ethz/ssh2/transport/KexManager.java	Fri Jul 18 17:00:35 2014 -0700
@@ -7,7 +7,12 @@
 import java.io.IOException;
 import java.io.InterruptedIOException;
 import java.security.DigestException;
+import java.security.KeyPair;
+import java.security.PrivateKey;
 import java.security.SecureRandom;
+import java.security.interfaces.DSAPrivateKey;
+import java.security.interfaces.RSAPrivateKey;
+import java.security.interfaces.ECPrivateKey;
 import java.util.Arrays;
 
 import ch.ethz.ssh2.ConnectionInfo;
@@ -22,8 +27,9 @@
 import ch.ethz.ssh2.log.Logger;
 import ch.ethz.ssh2.packets.PacketKexInit;
 import ch.ethz.ssh2.packets.PacketNewKeys;
-import ch.ethz.ssh2.signature.DSAPrivateKey;
+import java.security.interfaces.DSAPrivateKey;
 import java.security.interfaces.RSAPrivateKey;
+import java.security.interfaces.ECPrivateKey;
 
 /**
  * @version $Id: KexManager.java 152 2014-04-28 11:02:23Z dkocher@sudo.ch $