Back to product page
- Introduction
- License Agreement
- Objects
- Enumerations
- wodTunnel
- Methods
- Properties
- AllocatePty
- Authentication
- Channels
- ClientName
- Compression
- Encryption
- EncryptionList
- FIPS
- HMacList
- Hostname
- KeyExchangeList
- KeySignatureList
- Login
- MyHostname
- MyIP
- Notification
- Password
- Port
- PrivateKey
- Protocol
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RemoteIdentification
- State
- StateText
- Threads
- Timeout
- UseIPv6
- Version
- Events
- wodTunnelNotify
- Channel
- Channels
- User
- Users
- How to get support?
- Technical information
- Fast notifications interface
- Using threads
- Error list
Encryption property
Determines the level of compression used.
Type
An EncryptionsEnum enumeration.Syntax
- Basic
object.Encryption [= value]
The Encryption(object,value) syntax has these parts:
The Encryption(object,value) syntax has these parts:
object | An expression evaluating to an object of type wodTunnel. |
value | An EncryptionsEnum enumeration, as described in settings. |
Remarks
The settings for Action are:
Constant | Value | Description |
---|---|---|
encAny | 0 | Anything suitable, selected by wodSSHTunnel component. |
encDES | 1 | DES encryption |
enc3DES | 2 | 3DES encryption |
encAES | 3 | AES encryption |
encBLOWFISH | 4 | BLOWFISH encryption |
encAES128 | 5 | AES 128bit encryption |
encAES192 | 6 | AES 192bit encryption |
encAES256 | 7 | AES 256bit encryption |
encCAST128 | 8 | CAST 128 encryption |
- For an SSH1 connection it will try to negotiate the TripleDES algorithm. If it fails, it will try Blowfish. If this is not available (on the remote server), it will fallback to DES. Please note that the DES algorithm has been declared 'insecure', so you should avoid using it if possible.
- For an SSH2 connection it will attempt to negotiate AES (any type) first. If it fails, TripleDES will be attempted. If this is not available, it will try Blowfish. If this is also not available, the connection will be dropped. DES will not be attempted because most (new) servers don't support it due to its poor security.
Warning: changing this property also internally changes EncryptionList property.