Mercurial > 510Connectbot
annotate app/src/main/java/ch/ethz/ssh2/ConnectionInfo.java @ 471:4f686f5a8b0f
Added tag stable-1.9.3-8 for changeset 2cc170e3fc9b
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 04 Oct 2019 17:13:10 -0700 |
parents | d29cce60f393 |
children |
rev | line source |
---|---|
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
1 /* |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
2 * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
3 * Please refer to the LICENSE.txt for licensing details. |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
4 */ |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
5 package ch.ethz.ssh2; |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
6 |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
7 /** |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
8 * In most cases you probably do not need the information contained in here. |
307 | 9 * |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
10 * @author Christian Plattner |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
11 * @version 2.50, 03/15/10 |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
12 */ |
307 | 13 public class ConnectionInfo { |
14 /** | |
15 * The used key exchange (KEX) algorithm in the latest key exchange. | |
16 */ | |
17 public String keyExchangeAlgorithm; | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
18 |
307 | 19 /** |
20 * The currently used crypto algorithm for packets from to the client to the | |
21 * server. | |
22 */ | |
23 public String clientToServerCryptoAlgorithm; | |
24 /** | |
25 * The currently used crypto algorithm for packets from to the server to the | |
26 * client. | |
27 */ | |
28 public String serverToClientCryptoAlgorithm; | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
29 |
307 | 30 /** |
31 * The currently used MAC algorithm for packets from to the client to the | |
32 * server. | |
33 */ | |
34 public String clientToServerMACAlgorithm; | |
35 /** | |
36 * The currently used MAC algorithm for packets from to the server to the | |
37 * client. | |
38 */ | |
39 public String serverToClientMACAlgorithm; | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
40 |
307 | 41 /** |
42 * The type of the server host key (currently either "ssh-dss" or | |
43 * "ssh-rsa"). | |
44 */ | |
45 public String serverHostKeyAlgorithm; | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
46 |
307 | 47 /** |
48 * The server host key that was sent during the latest key exchange. | |
49 */ | |
50 public byte[] serverHostKey; | |
51 | |
52 /** | |
53 * Number of kex exchanges performed on this connection so far. | |
54 */ | |
55 public int keyExchangeCounter = 0; | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
56 } |