1 2 package ch.ethz.ssh2; 3 4 10 public class ConnectionInfo 11 { 12 15 public String keyExchangeAlgorithm; 16 17 21 public String clientToServerCryptoAlgorithm; 22 26 public String serverToClientCryptoAlgorithm; 27 28 32 public String clientToServerMACAlgorithm; 33 37 public String serverToClientMACAlgorithm; 38 39 43 public String serverHostKeyAlgorithm; 44 47 public byte[] serverHostKey; 48 49 52 public int keyExchangeCounter = 0; 53 } 54 | Popular Tags |