File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
src/Renci.SshNet/Compression
test/Renci.SshNet.IntegrationTests Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,14 @@ Private keys can be encrypted using one of the following cipher methods:
122
122
* hmac-sha2-256-etm<span ></span >@openssh .com
123
123
* hmac-sha2-512-etm<span ></span >@openssh .com
124
124
125
+
126
+ ## Compression
127
+
128
+ ** SSH.NET** supports the following compression algorithms:
129
+ * none (default)
130
+ * zlib<span ></span >@openssh .com (.NET 6 and higher)
131
+ * zlib (.NET 6 and higher)
132
+
125
133
## Framework Support
126
134
** SSH.NET** supports the following target frameworks:
127
135
* .NETFramework 4.6.2 (and higher)
Original file line number Diff line number Diff line change 3
3
namespace Renci . SshNet . Compression
4
4
{
5
5
/// <summary>
6
- /// Represents "zlib@openssh.org " compression implementation.
6
+ /// Represents "zlib@openssh.com " compression implementation.
7
7
/// </summary>
8
8
public class ZlibOpenSsh : Compressor
9
9
{
@@ -12,7 +12,7 @@ public class ZlibOpenSsh : Compressor
12
12
/// </summary>
13
13
public override string Name
14
14
{
15
- get { return "zlib@openssh.org " ; }
15
+ get { return "zlib@openssh.com " ; }
16
16
}
17
17
18
18
/// <summary>
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public void None()
24
24
public void ZlibOpenSsh ( )
25
25
{
26
26
DoTest ( new KeyValuePair < string , Func < Compressor > > ( "[email protected] " , ( ) => new ZlibOpenSsh ( ) ) ) ;
27
- }
27
+ }
28
28
#endif
29
29
30
30
private void DoTest ( KeyValuePair < string , Func < Compressor > > compressor )
You can’t perform that action at this time.
0 commit comments