Enum EncryptionType
Namespace: MonoTorrent.Client
Assembly: MonoTorrent.dll
Syntax
public enum EncryptionType
Fields
| Name | Description |
|---|---|
| PlainText | Nothing is encrypted. This is the fastest but allows deep packet inspection to detect the bittorrent handshake. If connections are being closed before the handshake completes, or very soon after it completes, then it's possible that the ISP is closing them, and so RC4 based methods may prevent that from happening. |
| RC4Full | Encryption is applied to the initial handshake and to all subsequent data transfers. |
| RC4Header | Encryption is applied to the initial handshaking process only. Once the connection has been established all further data is sent in plain text. This is the second fastest and should prevent deep packet inspection from detecting the bittorrent handshake. |