CertOpenSystemStore (Windows CE 5.0)

Send Feedback

This function is a simplified function used to open the most common system certificate store. To open certificate stores with more complex requirements, such as file-based or memory-based stores, use the CertOpenStore function.

HCERTSTORE WINAPI CertOpenSystemStore(HCRYPTPROVhProv,LPCTSTRszSubsystemProtocol);

Parameters

  • hProv
    [in] HCRYPTPROV handle to a cryptographic service provider (CSP). Set the hProv parameter to NULL to use the default CSP. If hProv is not NULL, it must be a CSP handle created using the CryptAcquireContext function.

  • szSubsystemProtocol
    [in] Null-terminated string that contains the name of a system store. The following table shows example system stores.

    Predefined system store Description
    CA Certifying authority certificates.
    MY A certificate store holding MY certificates and their associated private keys.
    ROOT Root certificates.

    If the system store name provided in this parameter is not the name of an existing system store, a new system store will be created and used. The CertEnumSystemStore function can be used to list the names of existing system stores.

Return Values

If the function succeeds, the return value is a handle to the certificate store.

If the function fails, the return value is NULL. For extended error information, call the GetLastError function. Note that errors from the called CertOpenStore function are propagated to this function.

Remarks

After the system store is opened, all the standard certificate store functions can be used to manipulate the certificates.

After use, the store should be closed by using the CertCloseStore function.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Wincrypt.h.
Link Library: Crypt32.lib.

See Also

HCRYPTPROV | CertAddEncodedCertificateToStore | CertCloseStore | CertEnumSystemStore | CertGetCertificateContextProperty | CertOpenStore | CertSaveStore | CryptAcquireContext

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.