L_DicomSetEncryptKeyISCL

#include "ltdic.h"

L_LTDIC_API L_UINT32 L_DicomSetEncryptKeyISCL(hNet, nIndex, key)

Sets an encryption key at the specified index in the array.

Parameters

HDICOMNET hNet

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

L_UINT32 nIndex

Index into the array of encryption keys. This index is 1-based. Possible values for this index are between 1 and 8, inclusive.

L_UINT64 key

A 64-bit integer, in little endian byte order, that represents an encryption key.

Returns

Value Meaning
DICOM_SUCCESS Success. The specified key was set in the specified position in the keys array.
DICOM_ERROR_PARAMETER A parameter error occurred. nIndex was 0 or bigger than 8. Refer to Return Codes.

Comments

The index of the encryption key is sent with every message sent from the sender to the receiver. Different encryption keys can be used for each message, as long as the keys of the sender and the receiver match.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT DicomSetEncryptKeyISCLExample(L_VOID) 
{ 
   HDICOMNET hDicomNet; 
   L_INT nRet; 
 
   hDicomNet = L_DicomCreateNet (TEXT(""), DICOM_SECURE_ISCL); 
   nRet = L_DicomSetEncryptKeyISCL(hDicomNet, 1, 0x0123456789ABCDEF); 
   if (nRet != DICOM_SUCCESS) 
      return nRet; 
 
   // 64-bit value, in hexadecimal notation 
   nRet = L_DicomSetIndexForEncryptISCL (hDicomNet, 1); 
 
   // on the first position 
   return nRet; 
} 
Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C API Help

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