IX509CertificateRequestPkcs10::get_Signature method (certenroll.h)

The Signature property retrieves the request signature created by the Encode method. The signature is contained in a byte array encoded by using Distinguished Encoding Rules (DER) as defined by the Abstract Syntax Notation One (ASN.1) standard. The DER-encoded byte array is represented by a string that is either a pure binary sequence or is Unicode encoded.

This property is read-only.

Syntax

HRESULT get_Signature(
  EncodingType Encoding,
  BSTR         *pValue
);

Parameters

Encoding

pValue

Return value

None

Remarks

The Encode method creates a DER-encoded and signed certificate request which it saves internally as a byte array. You can use the Signature property to retrieve a byte array that contains the signature.

You must initialize the IX509CertificateRequestPkcs10 object and call Encode before calling this property. For more information, see any of the following methods:

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Target Platform Windows
Header certenroll.h
DLL CertEnroll.dll

See also

IX509CertificateRequestPkcs10