EncryptionProtocols Enumeration |
Defines the possible versions of encryption protocols.
Namespace:
Aspose.Email.Clients.Base
Assembly:
Aspose.Email (in Aspose.Email.dll) Version: 20.2
Syntax [FlagsAttribute]
public enum EncryptionProtocols
<FlagsAttribute>
Public Enumeration EncryptionProtocols
[FlagsAttribute]
public enum class EncryptionProtocols
[<FlagsAttribute>]
type EncryptionProtocols
Members
| Member name | Value | Description |
---|
| NotSpecified | 0 |
Not specified
Please note, this value is not similar to SslProtocols.None value and can't be used to automatically select an encryption protocol.
Also JFYI, SslProtocols.None value leads to problem with connection to mail servers and can't be used in email clients.
|
| Ssl2 | 12 | Obsolete.
Ssl 2
|
| Ssl3 | 48 | Obsolete.
Ssl 3
|
| Tls | 192 |
TLS 1.0
|
| Tls11 | 768 |
TLS 1.1
|
| Tls12 | 3072 |
TLS 1.2
|
| Tls13 | 12288 |
TLS 1.3
|
See Also