comparison src/ch/ethz/ssh2/ServerConnection.java @ 281:b4ca341c318d ganymed

start conversion from trilead to ganymed
author Carl Byington <carl@five-ten-sg.com>
date Fri, 18 Jul 2014 17:07:38 -0700
parents d7e088fa2123
children db9b028016de
comparison
equal deleted inserted replaced
280:51d5f434ef6b 281:b4ca341c318d
12 import java.net.Socket; 12 import java.net.Socket;
13 13
14 import ch.ethz.ssh2.crypto.CryptoWishList; 14 import ch.ethz.ssh2.crypto.CryptoWishList;
15 import ch.ethz.ssh2.crypto.PEMDecoder; 15 import ch.ethz.ssh2.crypto.PEMDecoder;
16 import ch.ethz.ssh2.server.ServerConnectionState; 16 import ch.ethz.ssh2.server.ServerConnectionState;
17 import ch.ethz.ssh2.signature.DSAPrivateKey; 17 import java.security.KeyPair;
18 import java.security.PrivateKey;
19 import java.security.interfaces.DSAPrivateKey;
20 import java.security.interfaces.ECPrivateKey;
18 import java.security.interfaces.RSAPrivateKey; 21 import java.security.interfaces.RSAPrivateKey;
19 import ch.ethz.ssh2.transport.ServerTransportManager; 22 import ch.ethz.ssh2.transport.ServerTransportManager;
20 23
21 /** 24 /**
22 * A server-side SSH-2 connection. 25 * A server-side SSH-2 connection.