Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.23
LEADTOOLS DICOM C++ Class Library Help

LDicomNet::SetServerCertificateTLS

Show in webframe

#include "ltdic.h"

L_UINT32 LDicomNet::SetServerCertificateTLS(pszPathToCertificate, certType, pszPathToKeyFile);

L_TCHAR *pszPathToCertificate;

/* character string */

L_UINT32 certType;

/* certificate type */

L_TCHAR *pszPathToKeyFile;

/* character string */

Sets a certificate for the server. This function is available in the Medical Imaging Suite toolkits.

Parameter

Description

pszPathToCertificate

Character string that contains the path to the file that contains the certificate.

certType

Flag that indicates whether the certificate is binary or text. Possible values are:

 

Value

Meaning

 

L_TLS_FILETYPE_PEM

Text certificate

 

L_TLS_FILETYPE_ASN1

Binary certificate

pszPathToKeyFile

Character string that contains the path to the file containing the private key. This parameter is used if the private key is available in raw mode.

Returns

DICOM_SUCCESS

Success

<>DICOM_SUCCESS

An error occurred. Refer to Return Codes.

Comments

The usual sizes for an RSA key is 512 and 1024 bits. There is a limitation for import in Europe a RSA key must be at least 768 bits long. There are no known export restrictions.

The server is authenticated always. A server may be authenticated with a chain of certificates, all in the same file.

Required DLLs and Libraries

LTDIC
LTCRY
LTTLS

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application

Platforms

Win32, x64

See Also

Functions:

LDicomNet::SetClientCertificateTLS, Class Members

Topics:

Adding TLS Security to a DICOM Connection

 

Negotiating a Ciphersuite

 

General Transport Layer Secure (TLS) Information

Example

#define MAKE_IMAGE_PATH(pFileName) TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\")pFileName
L_INT LDicomNet_SetServerCertificateTLSExample(LDicomNet* m_pDicomNet)
{
   L_INT       nRet;
   LDicomNet*  pDicomNet;
   pDicomNet = m_pDicomNet;
   nRet = pDicomNet->SetServerCertificateTLS(MAKE_IMAGE_PATH(TEXT("server.pem")), L_TLS_FILETYPE_PEM, NULL);
   if(nRet != DICOM_SUCCESS)
      return nRet;
   L_TCHAR strMsg[64];
   wsprintf(strMsg, TEXT("Loaded server certificate, result is %s"), nRet?TEXT("Error"):TEXT("Success"));
   AfxMessageBox(strMsg);
   return DICOM_SUCCESS;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.