SSLCreateFlags property (ILEADDicomNet)

VB.NET example

C# example

Visual Basic example

Visual C++ 6.0 example

 

Syntax

DicomSSLCreateFlags SSLCreateFlags

Overview

Refer to Working with DICOM Network Connections

Remarks

(Medical Imaging Suite only) Values that indicate which SSL security options are to be changed from the defaults. Values may be combined using the bitwise OR ( | ) operator. Possible values are:

Value

Meaning

DICOM_SSL_CTX_CREATE_METHOD_TYPE

[0x001] The SSLMethodType member is valid.

DICOM_SSL_CTX_CREATE_VERIFY_DEPTH

[0x002] The SSLVerifyDepth member is valid

DICOM_SSL_CTX_CREATE_VERIFY_MODE

[0x004] The SSLVerifyMode member is valid

DICOM_SSL_CTX_CREATE_CAFILE

[0x008] The SSLCAfile member is valid

DICOM_SSL_CTX_CREATE_OPTIONS

[0x010] The SSLOptions member is valid

DICOM_SSL_CTX_CREATE_ALL

[0x01F] All members are valid

Use the following procedure to change the default security options:

1.

Set the UseSSLOptions property to VARIANT_TRUE.

2.

Set the NetworkSecurityMode property to DICOM_SECURE_TLS.

3.

Set any or all of the following properties.

SSLMethodType property

SSLVerifyMode property

SSLOptions property

SSLCAFile property

SSLVerifyDepth property

4.

Set the SSLCreateFlags property to have the flags that correspond to the properties that were set in step 3.

5.

Call the StartUp method.

Note that the properties in steps 1, 2, 3, and 4 must be set before calling the StartUp method, and that the NetworkSecurityMode property must be set to DICOM_SECURE_TLS. If the NetworkSecurityMode property is not DICOM_SECURE_TLS, then the SSL properties are ignored.

See Also

Elements:

StartUp method,UseSSLOptions property, SSLMethodType property, SSLVerifyMode property, SSLOptions property, SSLCAFile property, SSLVerifyDepth property, NetworkSecurityMode property

Topics:

DICOM Network Connection:Creating a Network Connection

 

DICOM Security: Working with TLS

 

Adding TLS Secuirty to a DICOM Connection