#include "ltdic.h"
L_INT EXT_CALLBACK YourFunction (hNet, pszPassword, nSize, nFlag, pUserData)
The L_DicomSetClientCertificateTLS or L_DicomSetServerCertificateTLS functions generate a call to this function whenever the private key file is password encrypted in order to obtain the password to decrypt the file. When using this event function, copy the private key into the pszPassword buffer, and have the function return the length of the password. This function is available in the Medical SuiteToolkit.
A DICOM Network handle.
(in,out) pointer to a character string buffer to be used to hold the password. Copy the password for the private key file into this buffer.
(in) size of the buffer pointed to by pszPassword. This is an incoming parameter.
(in) flag specifying whether pszPassword is being used for decryption or encryption. Possible values are:
Value | Meaning |
---|---|
0 | The pszPassword is being used for decryption. |
1 | The pszPassword is being used for encryption. |
Void pointer that you can use to access a variable or structure containing data that your callback function needs. This gives you a way to receive data indirectly from the function that uses this callback function.
Keep in mind that this is a void pointer, which must be cast to the appropriate data type within your callback function.
Have the function return the length of the password copied into the pszPassword buffer.
A call to this function may be generated after a call to L_DicomSetClientCertificateTLS or L_DicomSetClientCertificateTLS. Calling either of these functions with a private key file that is password encrypted will result in a call to this function in order to obtain the password. To process this function, perform the following steps:
The nSize and nFlag arguments are provided for information, and should not be changed. The length of the pszPassword buffer is given in the nSize parameter. The input parameter nFlag indicates whether the password will be used for encryption or decryption.
To use this callback function, PRIVATEKEYPASSWORD must be set using L_DicomSetCallbackExt.
Required DLLs and Libraries
Win32, x64
For an example, refer to L_DicomCreateNetExt.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document