SignCSR Method

Creates a signed certificate from a CSR.

Syntax

ANSI (Cross Platform)
char* SignCSR(const char* lpCSR, int lenCSR, int iSerialNumber);

Unicode (Windows)
LPWSTR SignCSR(LPCSTR lpCSR, INT lenCSR, INT iSerialNumber);
- (NSString*)signCSR:(NSData*)CSR :(int)serialNumber;
#define MID_CERTMGR_SIGNCSR 21

IPWORKS_EXTERNAL int IPWORKS_CALL IPWorks_CertMgr_Do(void *lpObj, int methid, int cparam, void *param[], int cbparam[], int64 *lpllVal);

Remarks

This method will create a signed certificate from a Certificate Signing Request (CSR). CSR specifies the Certificate Signing Request to be signed.

SerialNumber specifies the certificate serial number. All certificates signed by the same issuer must have different (unique) serial numbers.

The time validity of the new certificate is determined by the CertValidityTime configuration setting, and the key size by the CertKeyLength configuration setting.

NOTE: This functionality is only available in Windows.

Error Handling (C++)

This method returns a String value; after it returns, call the GetLastErrorCode() method to obtain its result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 C++ Edition - Version 20.0 [Build 8307]