C#
Objective-C
C++
public enum DicomSslMethodType
typedef NS_ENUM(NSInteger, LTDicomSslMethodType) {
LTDicomSslMethodTypeSslV2 = 0x01,
LTDicomSslMethodTypeSslV3 = 0x02,
LTDicomSslMethodTypeTlsV1 = 0x03,
LTDicomSslMethodTypeSslV23 = 0x04,
};
public enum class DicomSslMethodType
Value | Member | Description |
---|---|---|
1 | SslV2 | Use Secure Sockets Layer (SSL) Version 2. Avoid using SSL Version 2 because this version is known to have security flaws. |
2 | SslV3 | Use Secure Sockets Layer (SSL) Version 3. |
3 | TlsV1 | Use Transport Layer Security (TLS) Version 1. |
4 | SslV23 | Use a compatible security verification mode. This mode can handle any of the three modes (SslV2, SslV3, TlsV1). |
For an example, refer to Initialize.