public class

ConnectionInfo

extends Object
java.lang.Object
   ↳ com.trilead.ssh2.ConnectionInfo

Class Overview

In most cases you probably do not need the information contained in here.

Summary

Fields
public String clientToServerCryptoAlgorithm The currently used crypto algorithm for packets from to the client to the server.
public String clientToServerMACAlgorithm The currently used MAC algorithm for packets from to the client to the server.
public String keyExchangeAlgorithm The used key exchange (KEX) algorithm in the latest key exchange.
public int keyExchangeCounter Number of kex exchanges performed on this connection so far.
public byte[] serverHostKey The server host key that was sent during the latest key exchange.
public String serverHostKeyAlgorithm The type of the server host key (currently either "ssh-dss" or "ssh-rsa").
public String serverToClientCryptoAlgorithm The currently used crypto algorithm for packets from to the server to the client.
public String serverToClientMACAlgorithm The currently used MAC algorithm for packets from to the server to the client.
Public Constructors
ConnectionInfo()
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public String clientToServerCryptoAlgorithm

The currently used crypto algorithm for packets from to the client to the server.

public String clientToServerMACAlgorithm

The currently used MAC algorithm for packets from to the client to the server.

public String keyExchangeAlgorithm

The used key exchange (KEX) algorithm in the latest key exchange.

public int keyExchangeCounter

Number of kex exchanges performed on this connection so far.

public byte[] serverHostKey

The server host key that was sent during the latest key exchange.

public String serverHostKeyAlgorithm

The type of the server host key (currently either "ssh-dss" or "ssh-rsa").

public String serverToClientCryptoAlgorithm

The currently used crypto algorithm for packets from to the server to the client.

public String serverToClientMACAlgorithm

The currently used MAC algorithm for packets from to the server to the client.

Public Constructors

public ConnectionInfo ()