Method | Description | |
---|---|---|
Compress ( byte data ) : byte[] |
Compresses the specified data.
|
|
Compress ( byte data, int offset, int length ) : byte[] |
Compresses the specified data.
|
|
Decompress ( byte data ) : byte[] |
Decompresses the specified data.
|
|
Decompress ( byte data, int offset, int length ) : byte[] |
Decompresses the specified data.
|
|
Dispose ( ) : void |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
|
Init ( Session session ) : void |
Initializes the algorithm
|
Method | Description | |
---|---|---|
Compressor ( ) : Renci.SshNet.Security |
Initializes a new instance of the Compressor class.
|
|
Dispose ( bool disposing ) : void |
Releases unmanaged and - optionally - managed resources
|
public Compress ( byte data ) : byte[] | ||
data | byte | Data to compress. |
return | byte[] |
public Compress ( byte data, int offset, int length ) : byte[] | ||
data | byte | Data to compress. |
offset | int | The zero-based byte offset in |
length | int | The number of bytes to be compressed. |
return | byte[] |
protected Compressor ( ) : Renci.SshNet.Security | ||
return | Renci.SshNet.Security |
public Decompress ( byte data ) : byte[] | ||
data | byte | Compressed data. |
return | byte[] |
public Decompress ( byte data, int offset, int length ) : byte[] | ||
data | byte | Compressed data. |
offset | int | The zero-based byte offset in |
length | int | The number of bytes to be read from the compressed data. |
return | byte[] |
protected Dispose ( bool disposing ) : void | ||
disposing | bool | |
return | void |
public Init ( Session session ) : void | ||
session | Session | The session. |
return | void |