ICertProperty::SetValueOnCertificate method (certenroll.h)

The SetValueOnCertificate method associates a property value with an existing certificate.

Syntax

HRESULT SetValueOnCertificate(
  [in] VARIANT_BOOL MachineContext,
  [in] EncodingType Encoding,
  [in] BSTR         strCertificate
);

Parameters

[in] MachineContext

A VARIANT_BOOL value that indicates whether the certificate store is for the local computer or the current user. Specify VARIANT_TRUE for the computer and VARIANT_FALSE for the user.

[in] Encoding

An EncodingType enumeration value that specifies the type of Unicode encoding applied to the certificate string identified by the strCertificate parameter.

[in] strCertificate

A BSTR variable that contains the DER-encoded certificate.

Beginning with Windows 7 and Windows Server 2008 R2, you can specify a certificate thumb print or serial number rather than an encoded certificate. Doing so causes the function to search the appropriate local stores for the matching certificate. Keep in mind the following points:

  • The BSTR must be an even number of hexadecimal digits.
  • Whitespace between hexadecimal pairs is ignored.
  • The Encoding parameter must be set to XCN_CRYPT_STRING_HEXRAW.
  • The MachineContext parameter determines whether the user or computer stores or both are searched.
  • If a private key is needed, only the personal and request stores are searched.
  • If a private key is not needed, the root and intermediate CA stores are also searched.

Return value

If the function succeeds, the function returns S_OK.

If the function fails, it returns an HRESULT value that indicates the error. Possible values include, but are not limited to, those in the following table. For a list of common error codes, see Common HRESULT Values.

Return code/value Description
CRYPT_E_NOT_FOUND
The certificate could not be found.
CRYPT_E_UNEXPECTED_MSG_TYPE
The certificate was found but the private key could not be loaded.

Remarks

Call the InitializeDecode method or the InitializeFromCertificate method to create a property value. Before calling either method, you must first set the PropertyId property to specify which property value to initialize.

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

ICertProperties

ICertProperty