CertComparePublicKeyInfo

This function compares two encoded public keys to determine whether they are identical.

BOOL WINAPI CertComparePublicKeyInfo(
DWORD dwCertEncodingType,
PCERT_PUBLIC_KEY_INFO pPublicKey1,
PCERT_PUBLIC_KEY_INFO pPublicKey2
);

Parameters

  • dwCertEncodingType
    [in] Specifies the encoding type used. Currently, only X509_ASN_ENCODING is used; however, additional encoding types may be added in the future.
  • pPublicKey1
    [in] Pointer to the CERT_PUBLIC_KEY_INFO structure for the first public key in the comparison.
  • pPublicKey2
    [in] Pointer to the CERT_PUBLIC_KEY_INFO structure for the second public key in the comparison.

Returned Values

If the public keys are identical and the function succeeds, the return value is nonzero (TRUE).

If the function fails, the return value is zero (FALSE).

Remarks

The desktop platform supports the PKCS_7_ASN_ENCODING flag, but Windows CE does not. Windows CE ignores the flag when it is specified.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 3.0 or later Wincrypt.h   Crypt32.lib

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

CERT_PUBLIC_KEY_INFO

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.