Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/transport/ServerKexManager.java @ 287:db9b028016de ganymed
start conversion from trilead to ganymed
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 18 Jul 2014 19:52:08 -0700 |
parents | 486df527ddc5 |
children | ab3a99f11a36 |
comparison
equal
deleted
inserted
replaced
286:4656869af8fe | 287:db9b028016de |
---|---|
4 */ | 4 */ |
5 package ch.ethz.ssh2.transport; | 5 package ch.ethz.ssh2.transport; |
6 | 6 |
7 import java.io.IOException; | 7 import java.io.IOException; |
8 import java.security.DigestException; | 8 import java.security.DigestException; |
9 | 9 import java.security.KeyPair; |
10 import java.security.PublicKey; | |
11 import java.security.SecureRandom; | |
12 import java.security.interfaces.DSAPrivateKey; | |
13 import java.security.interfaces.DSAPublicKey; | |
14 import java.security.interfaces.ECPrivateKey; | |
15 import java.security.interfaces.ECPublicKey; | |
16 import java.security.interfaces.RSAPrivateKey; | |
17 import java.security.interfaces.RSAPublicKey; | |
10 import ch.ethz.ssh2.ConnectionInfo; | 18 import ch.ethz.ssh2.ConnectionInfo; |
11 import ch.ethz.ssh2.PacketTypeException; | 19 import ch.ethz.ssh2.PacketTypeException; |
12 import ch.ethz.ssh2.auth.ServerAuthenticationManager; | 20 import ch.ethz.ssh2.auth.ServerAuthenticationManager; |
13 import ch.ethz.ssh2.crypto.cipher.BlockCipher; | 21 import ch.ethz.ssh2.crypto.cipher.BlockCipher; |
14 import ch.ethz.ssh2.crypto.cipher.BlockCipherFactory; | 22 import ch.ethz.ssh2.crypto.cipher.BlockCipherFactory; |