L_DicomGetCipherFromIndexTLS

Summary

Returns a value that represents the ciphersuite present at the specified index.

Syntax

#include "ltdic.h"

L_LTDIC_API L_CIPHERSUITE L_DicomGetCipherFromIndexTLS(hNet, nIndex)

Parameters

HDICOMNET hNet

Handle to an existing DICOM Network. This is the handle returned from the L_DicomCreateNet function.

L_UINT32 nIndex

Index of the ciphersuite to get. This is a zero-based index into an 8-position array that contains available ciphersuites, listed by preference.

Returns

Returns the ciphersuite at the specified index. For a list of possible values, refer to L_CIPHERSUITE.

Comments

More ciphersuites from the TLS standard can be added. Currently however, LEADTOOLS only supports those ciphersuites listed in the L_CIPHERSUITE enumerated type.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT DicomGetCipherFromIndexTLSExample(L_VOID) 
{ 
   HDICOMNET hDicomNet; 
   L_INT nRet; 
 
   hDicomNet = L_DicomCreateNet (TEXT(""), DICOM_SECURE_TLS); 
   nRet = L_DicomSetCipherToIndexTLS (hDicomNet, 0, TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA); 
   if (nRet != DICOM_SUCCESS) 
      return nRet; 
 
   L_CIPHERSUITE test; 
   test = L_DicomGetCipherFromIndexTLS (hDicomNet, 0); 
   if (test == TLS_DHE_RSA_WITH_DES_CBC_SHA) 
      MessageBox(NULL, TEXT("Cipher TLS_DHE_RSA_WITH_DES_CBC_SHA"),TEXT( ""), MB_OK); 
 
   return DICOM_SUCCESS; 
} 
Help Version 22.0.2023.1.22
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.