aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/trilead/ssh2/crypto/CryptoWishList.java
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2008-11-11 07:18:26 +0000
committerKenny Root <kenny@the-b.org>2008-11-11 07:18:26 +0000
commit1a2f49f29cd051d27cc87c08c4da67175b2ea3fe (patch)
treec9a42d8fe34baf75f6f53e07eccb661de4242357 /src/com/trilead/ssh2/crypto/CryptoWishList.java
parentd95071c05fccd687bbfbac98c100acf17724adb2 (diff)
downloadconnectbot-1a2f49f29cd051d27cc87c08c4da67175b2ea3fe.tar.gz
connectbot-1a2f49f29cd051d27cc87c08c4da67175b2ea3fe.tar.bz2
connectbot-1a2f49f29cd051d27cc87c08c4da67175b2ea3fe.zip
* Add compression option to hosts
Diffstat (limited to 'src/com/trilead/ssh2/crypto/CryptoWishList.java')
-rw-r--r--src/com/trilead/ssh2/crypto/CryptoWishList.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/trilead/ssh2/crypto/CryptoWishList.java b/src/com/trilead/ssh2/crypto/CryptoWishList.java
index c49befa..8fc64e5 100644
--- a/src/com/trilead/ssh2/crypto/CryptoWishList.java
+++ b/src/com/trilead/ssh2/crypto/CryptoWishList.java
@@ -1,6 +1,7 @@
package com.trilead.ssh2.crypto;
+import com.trilead.ssh2.compression.CompressionFactory;
import com.trilead.ssh2.crypto.cipher.BlockCipherFactory;
import com.trilead.ssh2.crypto.digest.MAC;
import com.trilead.ssh2.transport.KexManager;
@@ -20,4 +21,6 @@ public class CryptoWishList
public String[] s2c_enc_algos = BlockCipherFactory.getDefaultCipherList();
public String[] c2s_mac_algos = MAC.getMacList();
public String[] s2c_mac_algos = MAC.getMacList();
+ public String[] c2s_comp_algos = CompressionFactory.getDefaultCompressorList();
+ public String[] s2c_comp_algos = CompressionFactory.getDefaultCompressorList();
}