CertStore Unicode C Reference Documentation

CertStore

Current Version: 9.5.0.97

Represents a collection of certificates. The certificates may be loaded from a PFX (PKCS#12) or from a Windows-based certificate store.

Many of the methods of this class are only applicable when running on a MS Windows operating system. The methods for opening, creating, and modifying Windows-based certificate stores (registry-based, file-based, and memory-based) are (of course) Windows-only. However, the methods for loading certs from PFX (PKCS#12), are valid on all supported operating systems, including Linux, MAC OS X, Windows, etc.

Create/Dispose

HCkCertStoreW instance = CkCertStoreW_Create();
// ...
CkCertStoreW_Dispose(instance);
HCkCertStoreW CkCertStoreW_Create(void);

Creates an instance of the HCkCertStoreW object and returns a handle ("void *" pointer). The handle is passed in the 1st argument for the functions listed on this page.

void CkCertStoreW_Dispose(HCkCertStoreW handle);

Objects created by calling CkCertStoreW_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function. Also, any handle returned by a Chilkat "C" function must also be freed by the application by calling the appropriate Dispose method, such as CkCertStoreW_Dispose.

Properties

AvoidWindowsPkAccess
BOOL CkCertStoreW_getAvoidWindowsPkAccess(HCkCertStoreW cHandle);
void CkCertStoreW_putAvoidWindowsPkAccess(HCkCertStoreW cHandle, BOOL newVal);

Applies only when running on a Microsoft Windows operating system. If TRUE, then any method that returns a certificate will not try to also access the associated private key, assuming one exists. This is useful if the certificate was installed with high-security such that a private key access would trigger the Windows OS to display a security warning dialog. The default value of this property is FALSE.

top
DebugLogFilePath
void CkCertStoreW_getDebugLogFilePath(HCkCertStoreW cHandle, HCkString retval);
void CkCertStoreW_putDebugLogFilePath(HCkCertStoreW cHandle, const wchar_t *newVal);
const wchar_t *CkCertStoreW_debugLogFilePath(HCkCertStoreW cHandle);

If set to a file path, causes each Chilkat method or property call to automatically append it's LastErrorText to the specified log file. The information is appended such that if a hang or crash occurs, it is possible to see the context in which the problem occurred, as well as a history of all Chilkat calls up to the point of the problem. The VerboseLogging property can be set to provide more detailed information.

This property is typically used for debugging the rare cases where a Chilkat method call hangs or generates an exception that halts program execution (i.e. crashes). A hang or crash should generally never happen. The typical causes of a hang are:

  1. a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
  2. the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
  3. there is an internal problem (bug) in the Chilkat code that causes the hang.

top
LastErrorHtml
void CkCertStoreW_getLastErrorHtml(HCkCertStoreW cHandle, HCkString retval);
const wchar_t *CkCertStoreW_lastErrorHtml(HCkCertStoreW cHandle);

Provides information in HTML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorText
void CkCertStoreW_getLastErrorText(HCkCertStoreW cHandle, HCkString retval);
const wchar_t *CkCertStoreW_lastErrorText(HCkCertStoreW cHandle);

Provides information in plain-text format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorXml
void CkCertStoreW_getLastErrorXml(HCkCertStoreW cHandle, HCkString retval);
const wchar_t *CkCertStoreW_lastErrorXml(HCkCertStoreW cHandle);

Provides information in XML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastMethodSuccess
BOOL CkCertStoreW_getLastMethodSuccess(HCkCertStoreW cHandle);
void CkCertStoreW_putLastMethodSuccess(HCkCertStoreW cHandle, BOOL newVal);

Indicate whether the last method call succeeded or failed. A value of TRUE indicates success, a value of FALSE indicates failure. This property is automatically set for method calls. It is not modified by property accesses. The property is automatically set to indicate success for the following types of method calls:

  • Any method that returns a string.
  • Any method returning a Chilkat object, binary bytes, or a date/time.
  • Any method returning a standard boolean status value where success = TRUE and failure = FALSE.
  • Any method returning an integer where failure is defined by a return value less than zero.

Note: Methods that do not fit the above requirements will always set this property equal to TRUE. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.

top
NumCertificates
int CkCertStoreW_getNumCertificates(HCkCertStoreW cHandle);

The number of certificates held in the certificate store.

top
NumEmailCerts
int CkCertStoreW_getNumEmailCerts(HCkCertStoreW cHandle);

(This property only available on Microsoft Windows operating systems.)
The number of certificates that can be used for sending secure email within this store.

top
SmartCardPin
void CkCertStoreW_getSmartCardPin(HCkCertStoreW cHandle, HCkString retval);
void CkCertStoreW_putSmartCardPin(HCkCertStoreW cHandle, const wchar_t *newVal);
const wchar_t *CkCertStoreW_smartCardPin(HCkCertStoreW cHandle);
Introduced in version 9.5.0.86

Can be set to the PIN value for a certificate / private key stored on a smart card.

top
UncommonOptions
void CkCertStoreW_getUncommonOptions(HCkCertStoreW cHandle, HCkString retval);
void CkCertStoreW_putUncommonOptions(HCkCertStoreW cHandle, const wchar_t *newVal);
const wchar_t *CkCertStoreW_uncommonOptions(HCkCertStoreW cHandle);
Introduced in version 9.5.0.87

This is a catch-all property to be used for uncommon needs. This property defaults to the empty string, and should typically remain empty.

top
VerboseLogging
BOOL CkCertStoreW_getVerboseLogging(HCkCertStoreW cHandle);
void CkCertStoreW_putVerboseLogging(HCkCertStoreW cHandle, BOOL newVal);

If set to TRUE, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is FALSE. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
void CkCertStoreW_getVersion(HCkCertStoreW cHandle, HCkString retval);
const wchar_t *CkCertStoreW_version(HCkCertStoreW cHandle);

Version of the component/library, such as "9.5.0.94"

More Information and Examples
top

Methods

AddCertificate
BOOL CkCertStoreW_AddCertificate(HCkCertStoreW cHandle, HCkCertW cert);

(This method only available on Microsoft Windows operating systems.)
Adds a certificate to the store. If the certificate is already in the store, it is updated with the new information.

Returns TRUE for success, FALSE for failure.

top
CloseCertStore
BOOL CkCertStoreW_CloseCertStore(HCkCertStoreW cHandle);
Introduced in version 9.5.0.94

(This method only available on Microsoft Windows operating systems.)
Closes the certificate store previously opened by one of the Open* methods.

Returns TRUE for success, FALSE for failure.

top
CreateFileStore
BOOL CkCertStoreW_CreateFileStore(HCkCertStoreW cHandle, const wchar_t *filename);

(This method only available on Microsoft Windows operating systems.)
Creates a new file-based certificate store. Certificates may be saved to this store by calling AddCertificate.

Returns TRUE for success, FALSE for failure.

top
CreateMemoryStore
BOOL CkCertStoreW_CreateMemoryStore(HCkCertStoreW cHandle);

(This method only available on Microsoft Windows operating systems.)
Creates an in-memory certificate store. Certificates may be added by calling AddCertificate.

Returns TRUE for success, FALSE for failure.

top
CreateRegistryStore
BOOL CkCertStoreW_CreateRegistryStore(HCkCertStoreW cHandle, const wchar_t *regRoot, const wchar_t *regPath);

(This method only available on Microsoft Windows operating systems.)
Creates a registry-based certificate store. regRoot must be "CurrentUser" or "LocalMachine". regPath is a registry path such as "Software/MyApplication/Certificates".

Returns TRUE for success, FALSE for failure.

top
FindCertByKeyContainer
HCkCertW CkCertStoreW_FindCertByKeyContainer(HCkCertStoreW cHandle, const wchar_t *name);
Introduced in version 9.5.0.77

Finds a certificate by it's key container name.

Returns NULL on failure

top
FindCertByRfc822Name
HCkCertW CkCertStoreW_FindCertByRfc822Name(HCkCertStoreW cHandle, const wchar_t *name);

Locates and returns a certificate by its RFC 822 name.

If multiple certificates match, then non-expired certificates will take precedence over expired certificates. In other words, Chilkat will aways return the non-expired certificate over the expired certificate.

Returns NULL on failure

top
FindCertBySerial
HCkCertW CkCertStoreW_FindCertBySerial(HCkCertStoreW cHandle, const wchar_t *str);

Finds and returns the certificate that has the matching serial number.

Returns NULL on failure.

Returns NULL on failure

top
FindCertBySha1Thumbprint
HCkCertW CkCertStoreW_FindCertBySha1Thumbprint(HCkCertStoreW cHandle, const wchar_t *str);

Finds a certificate by it's SHA-1 thumbprint. The thumbprint is a hexidecimal string.

Returns NULL on failure.

Returns NULL on failure

More Information and Examples
top
FindCertBySubject
HCkCertW CkCertStoreW_FindCertBySubject(HCkCertStoreW cHandle, const wchar_t *str);

Finds a certificate where one of the Subject properties (SubjectCN, SubjectE, SubjectO, SubjectOU, SubjectL, SubjectST, SubjectC) matches exactly (but case insensitive) with the passed string. A match in SubjectCN will be tried first, followed by SubjectE, and SubjectO. After that, the first match found in SubjectOU, SubjectL, SubjectST, or SubjectC, but in no guaranteed order, is returned. All matches are case insensitive.

Returns NULL on failure.

Returns NULL on failure

top
FindCertBySubjectCN
HCkCertW CkCertStoreW_FindCertBySubjectCN(HCkCertStoreW cHandle, const wchar_t *str);

Finds a certificate where the SubjectCN property (common name) matches exactly (but case insensitive) with the passed string

Returns NULL on failure.

Returns NULL on failure

top
FindCertBySubjectE
HCkCertW CkCertStoreW_FindCertBySubjectE(HCkCertStoreW cHandle, const wchar_t *str);

Finds a certificate where the SubjectE property (email address) matches exactly (but case insensitive) with the passed string. This function differs from FindCertForEmail in that the certificate does not need to match the ForSecureEmail property.

Returns NULL on failure.

Returns NULL on failure

top
FindCertBySubjectO
HCkCertW CkCertStoreW_FindCertBySubjectO(HCkCertStoreW cHandle, const wchar_t *str);

Finds a certificate where the SubjectO property (organization) matches exactly (but case insensitive) with the passed string.

Returns NULL on failure.

Returns NULL on failure

top
FindCertForEmail
HCkCertW CkCertStoreW_FindCertForEmail(HCkCertStoreW cHandle, const wchar_t *emailAddress);

(This method only available on Microsoft Windows operating systems.)
Finds a certificate that can be used to send secure email to the passed email address. A certificate matches only if the ForSecureEmail property is TRUE, and the email address matches exactly (but case insensitive) with the SubjectE property. Returns NULL if no matches are found.

Returns NULL on failure.

Returns NULL on failure

top
GetCertificate
HCkCertW CkCertStoreW_GetCertificate(HCkCertStoreW cHandle, int index);

Returns the Nth certificate in the store. The first certificate is at index 0.

Returns NULL on failure.

Returns NULL on failure

top
GetEmailCert
HCkCertW CkCertStoreW_GetEmailCert(HCkCertStoreW cHandle, int index);

(This method only available on Microsoft Windows operating systems.)
Returns the Nth email certificate in the store. The first certificate is at index 0. Use the NumEmailCertificates property to get the number of email certificates.

Returns NULL on failure.

Returns NULL on failure

top
LoadPemFile
BOOL CkCertStoreW_LoadPemFile(HCkCertStoreW cHandle, const wchar_t *pemPath);

Loads the certificates contained within a PEM formatted file.

Returns TRUE for success, FALSE for failure.

top
LoadPemStr
BOOL CkCertStoreW_LoadPemStr(HCkCertStoreW cHandle, const wchar_t *pemString);

Loads the certificates contained within an in-memory PEM formatted string.

Returns TRUE for success, FALSE for failure.

top
LoadPfxData
BOOL CkCertStoreW_LoadPfxData(HCkCertStoreW cHandle, HCkByteData pfxData, const wchar_t *password);

Loads a PFX from an in-memory image of a PFX file. Once loaded, the certificates within the PFX may be searched via the Find* methods. It is also possible to iterate from 0 to NumCertficates-1, calling GetCertificate for each index, to retrieve each certificate within the PFX.

Returns TRUE for success, FALSE for failure.

top
LoadPfxData2
BOOL CkCertStoreW_LoadPfxData2(HCkCertStoreW cHandle, const void * pByteData, unsigned long szByteData, const wchar_t *password);

Loads a PFX from an in-memory image of a PFX file. Once loaded, the certificates within the PFX may be searched via the Find* methods. It is also possible to iterate from 0 to NumCertficates-1, calling GetCertificate for each index, to retrieve each certificate within the PFX.

Returns TRUE for success, FALSE for failure.

top
LoadPfxFile
BOOL CkCertStoreW_LoadPfxFile(HCkCertStoreW cHandle, const wchar_t *pfxFilename, const wchar_t *password);

Loads a PFX file. Once loaded, the certificates within the PFX may be searched via the Find* methods. It is also possible to iterate from 0 to NumCertficates-1, calling GetCertificate for each index, to retrieve each certificate within the PFX.

Note: This method does not import certificates into the Windows certificate stores. The purpose of this method is to load a .pfx/.p12 into this object so that other API methods can be called to explore or search the contents of the PFX. The Chilkat Pfx class also provides similar functionality.

Returns TRUE for success, FALSE for failure.

top
OpenCurrentUserStore
BOOL CkCertStoreW_OpenCurrentUserStore(HCkCertStoreW cHandle, BOOL readOnly);

(This method is only available on Microsoft Windows operating systems.)
Opens the registry-based Current-User\Personal certificate store. Set readOnly = TRUE if only fetching certificates and not updating the certificate store (i.e. certificates will not be added or removed). Setting readOnly = TRUE causes the certificate store to be opened read-only, and will prevent "permission denied" errors caused by the need for read-write permission.

Once loaded, the certificates within the store may be searched via the Find* methods. An application may also iterate from 0 to NumCertficates-1 and call GetCertificate to access each certificate by index.

Returns TRUE for success, FALSE for failure.

top
OpenFileStore
BOOL CkCertStoreW_OpenFileStore(HCkCertStoreW cHandle, const wchar_t *filename, BOOL readOnly);

(This method only available on Microsoft Windows operating systems.)
Opens a file-based certificate store.

Once loaded, the certificates within the store may be searched via the Find* methods. An application may also iterate from 0 to NumCertficates-1 and call GetCertificate to access each certificate by index.

Returns TRUE for success, FALSE for failure.

top
OpenLocalSystemStore
BOOL CkCertStoreW_OpenLocalSystemStore(HCkCertStoreW cHandle, BOOL readOnly);

(This method is only available on Microsoft Windows operating systems.)
Opens the registry-based Local-Computer\Personal certificate store. Set readOnly = TRUE if only fetching certificates and not updating the certificate store (i.e. certificates will not be added or removed). Setting readOnly = TRUE causes the certificate store to be opened read-only, and will prevent "permission denied" errors caused by the need for read-write permission.

Once loaded, the certificates within the store may be searched via the Find* methods. An application may also iterate from 0 to NumCertficates-1 and call GetCertificate to access each certificate by index.

Returns TRUE for success, FALSE for failure.

top
OpenRegistryStore
BOOL CkCertStoreW_OpenRegistryStore(HCkCertStoreW cHandle, const wchar_t *regRoot, const wchar_t *regPath, BOOL readOnly);

(This method only available on Microsoft Windows operating systems.)
Opens an arbitrary registry-based certificate store. regRoot must be "CurrentUser" or "LocalMachine". regPath is a registry path such as "Software/MyApplication/Certificates".

Setting readOnly = TRUE causes the certificate store to be opened read-only, and will prevent "permission denied" errors caused by the need for read-write permission.

Once loaded, the certificates within the store may be searched via the Find* methods. An application may also iterate from 0 to NumCertficates-1 and call GetCertificate to access each certificate by index.

Returns TRUE for success, FALSE for failure.

top
OpenSmartcard
BOOL CkCertStoreW_OpenSmartcard(HCkCertStoreW cHandle, const wchar_t *csp);
Introduced in version 9.5.0.80

Opens the certificate store on the smartcard currently in the reader or USB token.

The csp can be set to the name of the CSP (Cryptographic Service Provider) that should be used. If csp is an empty string, then the 1st CSP found matching one of the following names will be used:

  • Microsoft Smart Card Key Storage Provider
  • Microsoft Base Smart Card Crypto Provider
  • Bit4id Universal Middleware Provider
  • YubiHSM Key Storage Provider (starting in v9.5.0.83)
  • eToken Base Cryptographic Provider
  • FTSafe ePass1000 RSA Cryptographic Service Provider
  • SecureStoreCSP
  • EnterSafe ePass2003 CSP v2.0
  • Gemalto Classic Card CSP
  • PROXKey CSP India V1.0
  • PROXKey CSP India V2.0
  • TRUST KEY CSP V1.0
  • Watchdata Brazil CSP V1.0
  • Luna Cryptographic Services for Microsoft Windows
  • Luna SChannel Cryptographic Services for Microsoft Windows
  • Safenet RSA Full Cryptographic Provider
  • nCipher Enhanced Cryptographic Provider
  • SafeSign Standard Cryptographic Service Provider
  • SafeSign Standard RSA and AES Cryptographic Service Provider
  • MySmartLogon NFC CSP
  • NFC Connector Enterprise
  • ActivClient Cryptographic Service Provider
  • EnterSafe ePass2003 CSP v1.0
  • Oberthur Card Systems Cryptographic Provider
  • Athena ASECard Crypto CSP"

(This method is only available on Microsoft Windows operating systems.)

Returns TRUE for success, FALSE for failure.

top
OpenWindowsStore
BOOL CkCertStoreW_OpenWindowsStore(HCkCertStoreW cHandle, const wchar_t *storeLocation, const wchar_t *storeName, BOOL readOnly);
Introduced in version 9.5.0.49

(This method only available on Microsoft Windows operating systems.)
Opens a Microsoft Windows certificate store. storeLocation must be "CurrentUser" or "LocalMachine". storeName is the name of the certificate store to open. It may be any of the following:

  • AddressBook: Certificate store for other users.
  • AuthRoot: Certificate store for third-party certification authorities (CAs).
  • CertificationAuthority: Certificate store for intermediate certification authorities (CAs).
  • Disallowed: Certificate store for revoked certificates.
  • My: Certificate store for personal certificates.
  • Root: Certificate store for trusted root certification authorities (CAs).
  • TrustedPeople: Certificate store for directly trusted people and resources.
  • TrustedPublisher: Certificate store for directly trusted publishers.

Setting readOnly = TRUE causes the certificate store to be opened read-only, and will prevent "permission denied" errors caused by the need for read-write permission.

Once loaded, the certificates within the store may be searched via the Find* methods. An application may also iterate from 0 to NumCertficates-1 and call GetCertificate to access each certificate by index.

Returns TRUE for success, FALSE for failure.

top
RemoveCertificate
BOOL CkCertStoreW_RemoveCertificate(HCkCertStoreW cHandle, HCkCertW cert);

(This method only available on Microsoft Windows operating systems.)
Removes the passed certificate from the store. The certificate object passed as the argument can no longer be used once removed.

Returns TRUE for success, FALSE for failure.

top