comparison src/ch/ethz/ssh2/server/ServerConnectionState.java @ 286:4656869af8fe ganymed

start conversion from trilead to ganymed
author Carl Byington <carl@five-ten-sg.com>
date Fri, 18 Jul 2014 19:26:29 -0700
parents b4ca341c318d
children 071eccdff8ea
comparison
equal deleted inserted replaced
285:486df527ddc5 286:4656869af8fe
33 public ServerConnectionCallback cb_conn; 33 public ServerConnectionCallback cb_conn;
34 public ServerAuthenticationCallback cb_auth; 34 public ServerAuthenticationCallback cb_auth;
35 35
36 /* Settings for the next key exchange */ 36 /* Settings for the next key exchange */
37 public CryptoWishList next_cryptoWishList = CryptoWishList.forServer(); 37 public CryptoWishList next_cryptoWishList = CryptoWishList.forServer();
38 public DSAPrivateKey next_dsa_key; 38 public KeyPair next_dsa_key;
39 public ECPrivateKey next_ec_key; 39 public KeyPair next_ec_key;
40 public RSAPrivateKey next_rsa_key; 40 public KeyPair next_rsa_key;
41 41
42 public Socket s; 42 public Socket s;
43 43
44 public ClientServerHello csh; 44 public ClientServerHello csh;
45 public ServerTransportManager tm; 45 public ServerTransportManager tm;