Cert Delphi DLL Reference Documentation

Cert

Current Version: 9.5.0.97

Digital certificate component / class

Create/Dispose

var
myObject: HCkCert;

begin
myObject := CkCert_Create();

// ...

CkCert_Dispose(myObject);
end;
function CkCert_Create: HCkCert; stdcall;

Creates an instance of the HCkCert object and returns a handle (i.e. a Pointer). The handle is passed in the 1st argument for the functions listed on this page.

procedure CkCert_Dispose(handle: HCkCert); stdcall;

Objects created by calling CkCert_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function.

Properties

AuthorityKeyId
procedure CkCert_getAuthorityKeyId(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__authorityKeyId(objHandle: HCkCert): PWideChar; stdcall;
Introduced in version 9.5.0.40

The authority key identifier of the certificate in base64 string format. This is only present if the certificate contains the extension OID 2.5.29.35.

top
AvoidWindowsPkAccess
function CkCert_getAvoidWindowsPkAccess(objHandle: HCkCert): wordbool; stdcall;
procedure CkCert_putAvoidWindowsPkAccess(objHandle: HCkCert; newPropVal: wordbool); stdcall;

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
CertVersion
function CkCert_getCertVersion(objHandle: HCkCert): Integer; stdcall;

The version of the certificate (1, 2, or 3). A value of 0 indicates an error -- the most likely cause being that the certificate object is empty (i.e. was never loaded with a certificate). Note: This is not the version of the software, it is the version of the X.509 certificate object. The version of the Chilkat certificate software is indicated by the Version property.

top
CspName
procedure CkCert_getCspName(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__cspName(objHandle: HCkCert): PWideChar; stdcall;

(Relevant only when running on a Microsoft Windows operating system.) If the HasKeyContainer property is True, then the certificate is linked to a key container and this property contains the name of the associated CSP (cryptographic service provider). When a certificate is linked to a key container , the following properties will provide information about the key container and private key: CspName, KeyContainerName, MachineKeyset, and Silent.

top
DebugLogFilePath
procedure CkCert_getDebugLogFilePath(objHandle: HCkCert; outPropVal: HCkString); stdcall;
procedure CkCert_putDebugLogFilePath(objHandle: HCkCert; newPropVal: PWideChar); stdcall;
function CkCert__debugLogFilePath(objHandle: HCkCert): PWideChar; stdcall;

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
Expired
function CkCert_getExpired(objHandle: HCkCert): wordbool; stdcall;

Has a value of True if the certificate or any certificate in the chain of authority has expired. (This information is not available when running on Windows 95/98 computers.)

top
ExtendedKeyUsage
procedure CkCert_getExtendedKeyUsage(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__extendedKeyUsage(objHandle: HCkCert): PWideChar; stdcall;
Introduced in version 9.5.0.85

Returns a string containing a comma separated list of keywords with the extended key usages of the certificate. The list of possible extended key usages are:

  • serverAuth - TLS WWW server authentication
  • clientAuth - TLS WWW client authentication
  • codeSigning - Signing of downloadable executable code
  • emailProtection - Email protection
  • timeStamping - Binding the hash of an object to a time
  • OCSPSigning - Signing OCSP responses

top
ForClientAuthentication
function CkCert_getForClientAuthentication(objHandle: HCkCert): wordbool; stdcall;

True if this certificate can be used for client authentication, otherwise False.

top
ForCodeSigning
function CkCert_getForCodeSigning(objHandle: HCkCert): wordbool; stdcall;

True if this certificate can be used for code signing, otherwise False.

top
ForSecureEmail
function CkCert_getForSecureEmail(objHandle: HCkCert): wordbool; stdcall;

True if this certificate can be used for sending secure email, otherwise False.

top
ForServerAuthentication
function CkCert_getForServerAuthentication(objHandle: HCkCert): wordbool; stdcall;

True if this certificate can be used for server authentication, otherwise False.

top
ForTimeStamping
function CkCert_getForTimeStamping(objHandle: HCkCert): wordbool; stdcall;

True if this certificate can be used for time stamping, otherwise False.

top
HasKeyContainer
function CkCert_getHasKeyContainer(objHandle: HCkCert): wordbool; stdcall;

(Relevant only when running on a Microsoft Windows operating system.) Indicates whether this certificate is linked to a key container. If True then the certificate is linked to a key container (usually containing a private key). If False, then it is not.

When a certificate is linked to a key container , the following properties will provide information about the key container and private key: CspName, KeyContainerName, MachineKeyset, and Silent.

top
IntendedKeyUsage
function CkCert_getIntendedKeyUsage(objHandle: HCkCert): LongWord; stdcall;

Bitflags indicating the intended usages of the certificate. The flags are:
Digital Signature: 0x80
Non-Repudiation: 0x40
Key Encipherment: 0x20
Data Encipherment: 0x10
Key Agreement: 0x08
Certificate Signing: 0x04
CRL Signing: 0x02
Encipher-Only: 0x01

top
IsRoot
function CkCert_getIsRoot(objHandle: HCkCert): wordbool; stdcall;

True if this is the root certificate, otherwise False.

top
IssuerC
procedure CkCert_getIssuerC(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__issuerC(objHandle: HCkCert): PWideChar; stdcall;

The certificate issuer's country.

top
IssuerCN
procedure CkCert_getIssuerCN(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__issuerCN(objHandle: HCkCert): PWideChar; stdcall;

The certificate issuer's common name.

top
IssuerDN
procedure CkCert_getIssuerDN(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__issuerDN(objHandle: HCkCert): PWideChar; stdcall;

The issuer's full distinguished name.

top
IssuerE
procedure CkCert_getIssuerE(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__issuerE(objHandle: HCkCert): PWideChar; stdcall;

The certificate issuer's email address.

top
IssuerL
procedure CkCert_getIssuerL(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__issuerL(objHandle: HCkCert): PWideChar; stdcall;

The certificate issuer's locality, which could be a city, count, township, or other geographic region.

top
IssuerO
procedure CkCert_getIssuerO(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__issuerO(objHandle: HCkCert): PWideChar; stdcall;

The certificate issuer's organization, which is typically the company name.

top
IssuerOU
procedure CkCert_getIssuerOU(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__issuerOU(objHandle: HCkCert): PWideChar; stdcall;

The certificate issuer's organizational unit, which is the unit within the organization.

top
IssuerS
procedure CkCert_getIssuerS(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__issuerS(objHandle: HCkCert): PWideChar; stdcall;

The certificate issuer's state or province.

top
KeyContainerName
procedure CkCert_getKeyContainerName(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__keyContainerName(objHandle: HCkCert): PWideChar; stdcall;

(Relevant only when running on a Microsoft Windows operating system.) If the HasKeyContainer property is True, then the certificate is linked to a key container and this property contains the name of the key container.

When a certificate is linked to a key container , the following properties will provide information about the key container and private key: CspName, KeyContainerName, MachineKeyset, and Silent.

top
LastErrorHtml
procedure CkCert_getLastErrorHtml(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__lastErrorHtml(objHandle: HCkCert): PWideChar; stdcall;

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
procedure CkCert_getLastErrorText(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__lastErrorText(objHandle: HCkCert): PWideChar; stdcall;

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
procedure CkCert_getLastErrorXml(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__lastErrorXml(objHandle: HCkCert): PWideChar; stdcall;

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
function CkCert_getLastMethodSuccess(objHandle: HCkCert): wordbool; stdcall;
procedure CkCert_putLastMethodSuccess(objHandle: HCkCert; newPropVal: wordbool); stdcall;

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
MachineKeyset
function CkCert_getMachineKeyset(objHandle: HCkCert): wordbool; stdcall;

(Relevant only when running on a Microsoft Windows operating system.) If the HasKeyContainer property is True, then the certificate is linked to a key container and this property indicates whether the key container is in the machine's keyset or in the keyset specific to the logged on user's account. If True, the key container is within the machine keyset. If False, it's in the user's keyset.

When a certificate is linked to a key container , the following properties will provide information about the key container and private key: CspName, KeyContainerName, MachineKeyset, and Silent.

top
OcspUrl
procedure CkCert_getOcspUrl(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__ocspUrl(objHandle: HCkCert): PWideChar; stdcall;

If present in the certificate's extensions, returns the OCSP URL of the certificate. (The Online Certificate Status Protocol (OCSP) is an Internet protocol used for obtaining the revocation status of an X.509 digital certificate.)

More Information and Examples
top
PrivateKeyExportable
function CkCert_getPrivateKeyExportable(objHandle: HCkCert): wordbool; stdcall;

(Relevant only when running on a Microsoft Windows operating system.) Indicates whether the private key was installed with security settings that allow it to be re-exported.

top
Revoked
function CkCert_getRevoked(objHandle: HCkCert): wordbool; stdcall;

True if the certificate or any certificate in the chain of authority has been revoked. This information is not available when running on Windows 95/98 computers. Note: If this property is False, it could mean that it was not able to check the revocation status. Because of this uncertainty, a CheckRevoked method has been added. It returns an integer indicating one of three possible states: 1 (revoked) , 0 (not revoked), -1 (unable to check revocation status).

top
Rfc822Name
procedure CkCert_getRfc822Name(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__rfc822Name(objHandle: HCkCert): PWideChar; stdcall;

The RFC822 name of the certificate. (The RFC822 name is one part of the Subject Alternative Name extension of a certificate, if it exists. It is often the only part of the SAN.)

If the certificate contains a list of RFC822 names then this property will return the comma separated list of names.

Starting in Chilkat v9.5.0.85, to get the complete Subject Alternative Name extension as XML, use the SubjectAlternativeName property.

top
SelfSigned
function CkCert_getSelfSigned(objHandle: HCkCert): wordbool; stdcall;

True if this is a self-signed certificate, otherwise False.

top
SerialDecimal
procedure CkCert_getSerialDecimal(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__serialDecimal(objHandle: HCkCert): PWideChar; stdcall;
Introduced in version 9.5.0.75

The certificate's serial number as a decimal string.

top
SerialNumber
procedure CkCert_getSerialNumber(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__serialNumber(objHandle: HCkCert): PWideChar; stdcall;

The certificate's serial number as a hexidecimal string.

top
Sha1Thumbprint
procedure CkCert_getSha1Thumbprint(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__sha1Thumbprint(objHandle: HCkCert): PWideChar; stdcall;

Hexidecimal string of the SHA-1 thumbprint for the certificate. (This is the SHA1 hash of the binary DER representation of the entire X.509 certificate.)

top
SignatureVerified
function CkCert_getSignatureVerified(objHandle: HCkCert): wordbool; stdcall;

Returns True if the certificate and all certificates in the chain of authority have valid signatures, otherwise returns False.

top
Silent
function CkCert_getSilent(objHandle: HCkCert): wordbool; stdcall;

(Relevant only when running on a Microsoft Windows operating system.)

If the HasKeyContainer property is True, then the certificate is linked to a key container and this property indicates that the key container will attempt to open any keys silently without any user interface prompts.

When a certificate is linked to a key container , the following properties will provide information about the key container and private key: CspName, KeyContainerName, MachineKeyset, and Silent.

top
SmartCardNoDialog
function CkCert_getSmartCardNoDialog(objHandle: HCkCert): wordbool; stdcall;
procedure CkCert_putSmartCardNoDialog(objHandle: HCkCert; newPropVal: wordbool); stdcall;
Introduced in version 9.5.0.77

If set to True, then no dialog will automatically popup if the SmartCardPin is incorrect. Instead, the method requiring the private key on the smart card will fail. The default value of this property is False, which means that if the SmartCardPin property is incorrect, a dialog with prompt will be displayed.

top
SmartCardPin
procedure CkCert_getSmartCardPin(objHandle: HCkCert; outPropVal: HCkString); stdcall;
procedure CkCert_putSmartCardPin(objHandle: HCkCert; newPropVal: PWideChar); stdcall;
function CkCert__smartCardPin(objHandle: HCkCert): PWideChar; stdcall;
Introduced in version 9.5.0.75

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

top
SubjectAlternativeName
procedure CkCert_getSubjectAlternativeName(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__subjectAlternativeName(objHandle: HCkCert): PWideChar; stdcall;
Introduced in version 9.5.0.85

The subject alternative name (SAN) name of the certificate returned as XML. See the examples linked below.

top
SubjectC
procedure CkCert_getSubjectC(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__subjectC(objHandle: HCkCert): PWideChar; stdcall;

The certificate subject's country.

top
SubjectCN
procedure CkCert_getSubjectCN(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__subjectCN(objHandle: HCkCert): PWideChar; stdcall;

The certificate subject's common name.

top
SubjectDN
procedure CkCert_getSubjectDN(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__subjectDN(objHandle: HCkCert): PWideChar; stdcall;

The certificate subject's full distinguished name.

top
SubjectE
procedure CkCert_getSubjectE(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__subjectE(objHandle: HCkCert): PWideChar; stdcall;

The certificate subject's email address.

top
SubjectKeyId
procedure CkCert_getSubjectKeyId(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__subjectKeyId(objHandle: HCkCert): PWideChar; stdcall;
Introduced in version 9.5.0.40

The subject key identifier of the certificate in base64 string format. This is only present if the certificate contains the extension OID 2.5.29.14.

top
SubjectL
procedure CkCert_getSubjectL(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__subjectL(objHandle: HCkCert): PWideChar; stdcall;

The certificate subject's locality, which could be a city, count, township, or other geographic region.

top
SubjectO
procedure CkCert_getSubjectO(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__subjectO(objHandle: HCkCert): PWideChar; stdcall;

The certificate subject's organization, which is typically the company name.

top
SubjectOU
procedure CkCert_getSubjectOU(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__subjectOU(objHandle: HCkCert): PWideChar; stdcall;

The certificate subject's organizational unit, which is the unit within the organization.

top
SubjectS
procedure CkCert_getSubjectS(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__subjectS(objHandle: HCkCert): PWideChar; stdcall;

The certificate subject's state or province.

top
TrustedRoot
function CkCert_getTrustedRoot(objHandle: HCkCert): wordbool; stdcall;

Returns True if the certificate has a trusted root authority, otherwise returns False.

Note: As of version 9.5.0.41, the notion of what your application deems as trusted becomes more specific. The TrustedRoots class/object was added in v9.5.0.0. Prior to this, a certificate was considered to be anchored by a trusted root if the certificate chain could be established to a root (self-signed) certificate, AND if the root certificate was located somewhere in the Windows registry-based certificate stores. There are two problems with this: (1) it's a Windows-only solution. This property would always return False on non-Windows systems, and (2) it might be considered not a strong enough set of conditions for trusting a root certificate.

As of version 9.5.0.41, this property pays attention to the new TrustedRoots class/object, which allows for an application to specificallly indicate which root certificates are to be trusted. Certificates may be added to the TrustedRoots object via the LoadCaCertsPem or AddCert methods, and then activated by calling the TrustedRoots.Activate method. The activated trusted roots are deemed to be trusted in any Chilkat API method/property that needs to make this determination. In addition, the TrustedRoots object has a property named TrustSystemCaRoots, which defaults to True, which allows for backward compatibility. It will trust CA certificates stored in the Windows registry-based certificate stores, or if on Linux, will trust certificates found in /etc/ssl/certs/ca-certificates.crt.

top
UncommonOptions
procedure CkCert_getUncommonOptions(objHandle: HCkCert; outPropVal: HCkString); stdcall;
procedure CkCert_putUncommonOptions(objHandle: HCkCert; newPropVal: PWideChar); stdcall;
function CkCert__uncommonOptions(objHandle: HCkCert): PWideChar; stdcall;
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
ValidFromStr
procedure CkCert_getValidFromStr(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__validFromStr(objHandle: HCkCert): PWideChar; stdcall;

The date (in RFC822 string format) that this certificate becomes (or became) valid. It is a GMT/UTC date that is returned.

top
ValidToStr
procedure CkCert_getValidToStr(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__validToStr(objHandle: HCkCert): PWideChar; stdcall;

The date (in RFC822 string format) that this certificate becomes (or became) invalid. It is a GMT/UTC date that is returned.

top
VerboseLogging
function CkCert_getVerboseLogging(objHandle: HCkCert): wordbool; stdcall;
procedure CkCert_putVerboseLogging(objHandle: HCkCert; newPropVal: wordbool); stdcall;

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
procedure CkCert_getVersion(objHandle: HCkCert; outPropVal: HCkString); stdcall;
function CkCert__version(objHandle: HCkCert): PWideChar; stdcall;

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

More Information and Examples
top

Methods

CheckRevoked
function CkCert_CheckRevoked(objHandle: HCkCert): Integer; stdcall;

Returns 1 if the certificate has been revoked, 0 if not revoked, and -1 if unable to check the revocation status.

Note: This method is only implemented on Windows systems. It uses the underlying Microsoft CertVerifyRevocation Platform SDK function to check the revocation status of a certificate. (Search "CertVerifyRevocation" to get information about it.)

Non-Windows (and Windows) applications can send an OCSP request as shown in the example below.

More Information and Examples
top
CheckSmartCardPin
function CkCert_CheckSmartCardPin(objHandle: HCkCert): Integer; stdcall;
Introduced in version 9.5.0.77

Verifies that the SmartCardPin property setting is correct. Returns 1 if correct, 0 if incorrect, and -1 if unable to check because the underlying CSP does not support the functionality.

More Information and Examples
top
ExportCertDer
function CkCert_ExportCertDer(objHandle: HCkCert;
    outData: HCkByteData): wordbool; stdcall;

Exports the digital certificate to ASN.1 DER format.

Returns True for success, False for failure.

top
ExportCertDerBd
function CkCert_ExportCertDerBd(objHandle: HCkCert;
    cerData: HCkBinData): wordbool; stdcall;
Introduced in version 9.5.0.70

Exports the digital certificate in ASN.1 DER format to a BinData object.

Returns True for success, False for failure.

top
ExportCertDerFile
function CkCert_ExportCertDerFile(objHandle: HCkCert;
    path: PWideChar): wordbool; stdcall;

Exports the digital certificate to ASN.1 DER format binary file.

Returns True for success, False for failure.

top
ExportCertPem
function CkCert_ExportCertPem(objHandle: HCkCert;
    outStr: HCkString): wordbool; stdcall;
function CkCert__exportCertPem(objHandle: HCkCert): PWideChar; stdcall;

Exports the digital certificate to an unencrypted PEM formatted string.

Returns True for success, False for failure.

More Information and Examples
top
ExportCertPemFile
function CkCert_ExportCertPemFile(objHandle: HCkCert;
    path: PWideChar): wordbool; stdcall;

Exports the digital certificate to an unencrypted PEM formatted file.

Returns True for success, False for failure.

More Information and Examples
top
ExportCertXml
function CkCert_ExportCertXml(objHandle: HCkCert;
    outStr: HCkString): wordbool; stdcall;
function CkCert__exportCertXml(objHandle: HCkCert): PWideChar; stdcall;

Exports a certificate to an XML format where the XML tags are the names of the ASN.1 objects that compose the X.509 certificate. Binary data is either hex or base64 encoded. (The binary data for a "bits" ASN.1 tag is hex encoded, whereas for all other ASN.1 tags, such as "octets", it is base64.)

Returns True for success, False for failure.

top
ExportPrivateKey
function CkCert_ExportPrivateKey(objHandle: HCkCert): HCkPrivateKey; stdcall;

Exports the certificate's private key.

Returns nil on failure

top
ExportPublicKey
function CkCert_ExportPublicKey(objHandle: HCkCert): HCkPublicKey; stdcall;

Exports the certificate's public key.

Returns nil on failure

More Information and Examples
top
ExportToPfxBd
function CkCert_ExportToPfxBd(objHandle: HCkCert;
    password: PWideChar;
    includeCertChain: wordbool;
    pfxData: HCkBinData): wordbool; stdcall;
Introduced in version 9.5.0.70

Exports the certificate and private key (if available) to pfxData. The password is what will be required to access the PFX contents at a later time. If includeCertChain is True, then the certificates in the chain of authority are also included in the PFX.

Returns True for success, False for failure.

top
ExportToPfxData
function CkCert_ExportToPfxData(objHandle: HCkCert;
    password: PWideChar;
    includeCertChain: wordbool;
    outBytes: HCkByteData): wordbool; stdcall;
Introduced in version 9.5.0.31

Exports the certificate and private key (if available) to an in-memory PFX image. The password is what will be required to access the PFX contents at a later time. If includeCertChain is True, then the certificates in the chain of authority are also included in the PFX.

Returns True for success, False for failure.

top
ExportToPfxFile
function CkCert_ExportToPfxFile(objHandle: HCkCert;
    pfxFilename: PWideChar;
    pfxPassword: PWideChar;
    bIncludeCertChain: wordbool): wordbool; stdcall;

Exports the certificate and private key (if available) to a PFX (.pfx or .p12) file. The output PFX is secured using the pfxPassword. If bIncludeCertChain is True, then the certificates in the chain of authority are also included in the PFX output file.

Returns True for success, False for failure.

More Information and Examples
top
FindIssuer
function CkCert_FindIssuer(objHandle: HCkCert): HCkCert; stdcall;

Finds and returns the issuer certificate. If the certificate is a root or self-issued, then the certificate returned is a copy of the caller certificate. (The IsRoot property can be check to see if the certificate is a root (or self-issued) certificate.)

Returns nil on failure

More Information and Examples
top
GetCertChain
function CkCert_GetCertChain(objHandle: HCkCert): HCkCertChain; stdcall;
Introduced in version 9.5.0.40

Returns a certficate chain object containing all the certificates (including this one), in the chain of authentication to the trusted root (if possible). If this certificate object was loaded from a PFX, then the certiicates contained in the PFX are automatically available for building the certificate chain. The UseCertVault method can be called to provide additional certificates that might be required to build the cert chain. Finally, the TrustedRoots object can be used to provide a way of making trusted root certificates available.

Note: Prior to v9.5.0.50, this method would fail if the certificate chain could not be completed to the root. Starting in v9.5.0.50, the incomplete certificate chain will be returned. The certificate chain's ReachesRoot property can be examined to see if the chain was completed to the root.

On Windows systems, the registry-based certificate stores are automatically consulted if needed to locate intermediate or root certificates in the chain. Chilkat searches certificate stores in the following order. See System Store Locations for more information.

  1. Current-User "CA" Certificate Store
  2. Local-Machine "CA" Certificate Store
  3. Current-User "Root" Certificate Store
  4. Local-Machine "Root" Certificate Store
  5. Current-User "MY" Certificate Store
  6. Local-Machine "MY" Certificate Store
  7. Current-User "ADDRESSBOOK" Certificate Store (if it exists)
  8. Local-Machine "ADDRESSBOOK" Certificate Store (if it exists)

Returns nil on failure

top
GetEncoded
function CkCert_GetEncoded(objHandle: HCkCert;
    outStr: HCkString): wordbool; stdcall;
function CkCert__getEncoded(objHandle: HCkCert): PWideChar; stdcall;

Returns a base64 encoded string representation of the certificate's binary DER format, which can be passed to SetFromEncoded to recreate the certificate object.

Returns True for success, False for failure.

top
GetExtensionAsText
function CkCert_GetExtensionAsText(objHandle: HCkCert;
    oid: PWideChar;
    outStr: HCkString): wordbool; stdcall;
function CkCert__getExtensionAsText(objHandle: HCkCert;
    oid: PWideChar): PWideChar; stdcall;
Introduced in version 9.5.0.89

Returns the certificate extension data as a string. This method should only be called for those extensions with text values NOT stored as binary ASN.1. In most cases, applications should call GetExtensionAsXml because most extensions contain ASN.1 values that need to be decoded..

Returns True for success, False for failure.

More Information and Examples
top
GetExtensionAsXml
function CkCert_GetExtensionAsXml(objHandle: HCkCert;
    oid: PWideChar;
    outStr: HCkString): wordbool; stdcall;
function CkCert__getExtensionAsXml(objHandle: HCkCert;
    oid: PWideChar): PWideChar; stdcall;
Introduced in version 9.5.0.49

Returns the certificate extension data in XML format (converted from ASN.1). The oid is an OID, such as the ones listed here: http://www.alvestrand.no/objectid/2.5.29.html

Note: In many cases, the data within the XML is returned base64 encoded. An application may need to take one further step to base64 decode the information contained within the XML.

Returns True for success, False for failure.

top
GetExtensionBd
function CkCert_GetExtensionBd(objHandle: HCkCert;
    oid: PWideChar;
    bd: HCkBinData): wordbool; stdcall;
Introduced in version 9.5.0.96

Returns the certificate extension data specified by oid in bd.

Returns True for success, False for failure.

More Information and Examples
top
GetPrivateKeyPem
function CkCert_GetPrivateKeyPem(objHandle: HCkCert;
    outStr: HCkString): wordbool; stdcall;
function CkCert__getPrivateKeyPem(objHandle: HCkCert): PWideChar; stdcall;

Exports the certificate's private key to a PEM string (if the private key is available).

Returns True for success, False for failure.

top
GetPubKeyDer
function CkCert_GetPubKeyDer(objHandle: HCkCert;
    preferPkcs1: wordbool;
    bd: HCkBinData): wordbool; stdcall;
Introduced in version 9.5.0.92

Loads the bd with the certificate's public key in ASN.1 DER format. If the key type (such as RSA) supports both PKCS1 and PKCS8 formats, then preferPkcs1 selects which format to return.

Returns True for success, False for failure.

top
GetSignature
function CkCert_GetSignature(objHandle: HCkCert;
    bd: HCkBinData): wordbool; stdcall;
Introduced in version 9.5.0.92

Loads the bd with the certificate's signature.

Returns True for success, False for failure.

top
GetSpkiFingerprint
function CkCert_GetSpkiFingerprint(objHandle: HCkCert;
    hashAlg: PWideChar;
    encoding: PWideChar;
    outStr: HCkString): wordbool; stdcall;
function CkCert__getSpkiFingerprint(objHandle: HCkCert;
    hashAlg: PWideChar;
    encoding: PWideChar): PWideChar; stdcall;
Introduced in version 9.5.0.55

Returns the SPKI Fingerprint suitable for use in pinning. (See RFC 7469.) An SPKI Fingerprint is defined as the output of a known cryptographic hash algorithm whose input is the DER-encoded ASN.1 representation of the Subject Public Key Info (SPKI) of an X.509 certificate. The hashAlg specifies the hash algorithm and may be "sha256", "sha384", "sha512", "sha1", "md2", "md5", "haval", "ripemd128", "ripemd160","ripemd256", or "ripemd320". The encoding specifies the encoding, and may be "base64", "hex", or any of the encoding modes specified in the article at the link below.

Returns True for success, False for failure.

More Information and Examples
top
GetSubjectPart
function CkCert_GetSubjectPart(objHandle: HCkCert;
    partNameOrOid: PWideChar;
    outStr: HCkString): wordbool; stdcall;
function CkCert__getSubjectPart(objHandle: HCkCert;
    partNameOrOid: PWideChar): PWideChar; stdcall;
Introduced in version 9.5.0.85

Returns a part of the certificate's subject by name or OID. The partNameOrOid can be a part name, such as "CN", "O", "OU", "E", "S", "L", "C", or "SERIALNUMBER", or it can be an OID such as "2.5.4.3".

Returns True for success, False for failure.

More Information and Examples
top
GetValidFromDt
function CkCert_GetValidFromDt(objHandle: HCkCert): HCkDateTime; stdcall;

Returns the date/time this certificate becomes (or became) valid.

Returns nil on failure

More Information and Examples
top
GetValidToDt
function CkCert_GetValidToDt(objHandle: HCkCert): HCkDateTime; stdcall;

Returns the date/time this certificate becomes (or became) invalid.

Returns nil on failure

More Information and Examples
top
HashOf
function CkCert_HashOf(objHandle: HCkCert;
    part: PWideChar;
    hashAlg: PWideChar;
    encoding: PWideChar;
    outStr: HCkString): wordbool; stdcall;
function CkCert__hashOf(objHandle: HCkCert;
    part: PWideChar;
    hashAlg: PWideChar;
    encoding: PWideChar): PWideChar; stdcall;
Introduced in version 9.5.0.75

Returns an encoded hash of a particular part of the certificate. The part may be one of the following:

  • IssuerDN
  • IssuerPublicKey
  • SubjectDN
  • SubjectPublicKey

The hashAlg is the name of the hash algorithm, such as "sha1", "sha256", "sha384", "sha512", "md5", etc. The encoding is the format to return, such as "hex", "base64", etc.

Returns True for success, False for failure.

top
HasPrivateKey
function CkCert_HasPrivateKey(objHandle: HCkCert): wordbool; stdcall;

Returns True if a private key associated with the certificate is available.

top
LinkPkcs11
function CkCert_LinkPkcs11(objHandle: HCkCert;
    session: HCkPkcs11): wordbool; stdcall;
Introduced in version 9.5.0.96

Links to the certificate's private key located on an HSM (smart card, token, or cloud HSM). Once linked, the certificate can be used for signing where the signing occurs on the HSM. See the example below for more detailed information.

Returns True for success, False for failure.

top
LoadByCommonName
function CkCert_LoadByCommonName(objHandle: HCkCert;
    cn: PWideChar): wordbool; stdcall;

(Relevant only when running on a Microsoft Windows operating system.) Searches the Windows Local Machine and Current User registry-based certificate stores for a certificate having the common name specified. If found, the certificate is loaded and ready for use.

Returns True for success, False for failure.

top
LoadByEmailAddress
function CkCert_LoadByEmailAddress(objHandle: HCkCert;
    emailAddress: PWideChar): wordbool; stdcall;

(Relevant only when running on a Microsoft Windows operating system.) Searches the Windows Local Machine and Current User registry-based certificate stores for a certificate containing the email address specified. If found, the certificate is loaded and ready for use.

Returns True for success, False for failure.

More Information and Examples
top
LoadByIssuerAndSerialNumber
function CkCert_LoadByIssuerAndSerialNumber(objHandle: HCkCert;
    issuerCN: PWideChar;
    serialNumber: PWideChar): wordbool; stdcall;

(Relevant only when running on a Microsoft Windows operating system.) Searches the Windows Local Machine and Current User registry-based certificate stores for a certificate matching the issuerCN and having an issuer matching the serialNumber. If found, the certificate is loaded and ready for use.

Note: The hex serial number should be uppercase. Starting in Chilkat v9.5.0.88, the hex serial number is case-insensitive.

Returns True for success, False for failure.

top
LoadBySubjectOid
function CkCert_LoadBySubjectOid(objHandle: HCkCert;
    oid: PWideChar;
    value: PWideChar): wordbool; stdcall;
Introduced in version 9.5.0.85

(Relevant only when running on a Microsoft Windows operating system.) Searches the Windows Local Machine and Current User registry-based certificate stores for a certificate containing a subject part matching the oid and value.

Returns True for success, False for failure.

top
LoadByThumbprint
function CkCert_LoadByThumbprint(objHandle: HCkCert;
    thumbprint: PWideChar;
    encoding: PWideChar): wordbool; stdcall;
Introduced in version 9.5.0.83

(Relevant only when running on a Microsoft Windows operating system.) Searches the Windows Local Machine and Current User registry-based certificate stores for a certificate having an MD5 or SHA1 thumbprint equal to the thumbprint. The hash (i.e. thumbprint) is passed as a string using the encoding specified by encoding (such as "base64", "hex", etc.).

Returns True for success, False for failure.

More Information and Examples
top
LoadFromBase64
function CkCert_LoadFromBase64(objHandle: HCkCert;
    encodedCert: PWideChar): wordbool; stdcall;

Loads an ASN.1 or DER encoded certificate represented in a Base64 string.

Returns True for success, False for failure.

top
LoadFromBd
function CkCert_LoadFromBd(objHandle: HCkCert;
    certBytes: HCkBinData): wordbool; stdcall;
Introduced in version 9.5.0.70

Loads an X.509 certificate from data contained in certBytes.

Note: The certBytes may contain the certificate in any format. It can be binary DER (ASN.1), PEM, Base64, etc. Chilkat will automatically detect the format.

Returns True for success, False for failure.

More Information and Examples
top
LoadFromBinary
function CkCert_LoadFromBinary(objHandle: HCkCert;
    data: HCkByteData): wordbool; stdcall;

Loads an X.509 certificate from ASN.1 DER encoded bytes.

Note: The data may contain the certificate in any format. It can be binary DER (ASN.1), PEM, Base64, etc. Chilkat will automatically detect the format.

Returns True for success, False for failure.

top
LoadFromBinary2
function CkCert_LoadFromBinary2(objHandle: HCkCert;
    pByteData: pbyte;
    szByteData: LongWord): wordbool; stdcall;

The same as LoadFromBinary, but instead of using a CkByteData object, the pointer to the byte data and length (in number of bytes) are specified directly in the method arguments.

top
LoadFromFile
function CkCert_LoadFromFile(objHandle: HCkCert;
    path: PWideChar): wordbool; stdcall;

Loads a certificate from a .cer, .crt, .p7b, or .pem file. This method accepts certificates from files in any of the following formats:
1. DER encoded binary X.509 (.CER)
2. Base-64 encoded X.509 (.CER)
3. Cryptographic Message Syntax Standard - PKCS #7 Certificates (.P7B)
4. PEM format
This method decodes the certificate based on the contents if finds within the file, and not based on the file extension. If your certificate is in a file having a different extension, try loading it using this method before assuming it won't work. This method does not load .p12 or .pfx (PKCS #12) files.

Returns True for success, False for failure.

top
LoadFromSmartcard
function CkCert_LoadFromSmartcard(objHandle: HCkCert;
    csp: PWideChar): wordbool; stdcall;
Introduced in version 9.5.0.77

Important: It's important to set the SmartCardPin property before calling this method.

Starting in Chilkat v9.5.0.87, the csp can be a string that specifies the certificate to be loaded by either Subject Common Name (CN) or hex serial number. For example, instead of passing a CSP name, your application would pass a string such as "CN=The cert subject common name" or "serial=01020304". See the linked examples below. If a certificate is specified by CN or Serial, then each connected smartcard and USB token is searched for the matching certificate. If the certificate is found, it is loaded and this method returns True.

Otherwise, this method loads the X.509 certificate from the smartcard currently in the reader, or from a USB token.

If the smartcard contains multiple certificates, this method arbitrarily picks one.

If the csp does not begin with "CN=" or "serial=", then 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"

Returns True for success, False for failure.

top
LoadPem
function CkCert_LoadPem(objHandle: HCkCert;
    strPem: PWideChar): wordbool; stdcall;
Introduced in version 9.5.0.49

Loads the certificate from a PEM string.

Returns True for success, False for failure.

top
LoadPfxBd
function CkCert_LoadPfxBd(objHandle: HCkCert;
    pfxData: HCkBinData;
    password: PWideChar): wordbool; stdcall;
Introduced in version 9.5.0.70

Loads the certificate from the PFX contained in pfxData. Note: If the PFX contains multiple certificates, the 1st certificate in the PFX is loaded.

Returns True for success, False for failure.

top
LoadPfxData
function CkCert_LoadPfxData(objHandle: HCkCert;
    pfxData: HCkByteData;
    password: PWideChar): wordbool; stdcall;

Loads a PFX from an in-memory image of a PFX file. Note: If the PFX contains multiple certificates, the 1st certificate in the PFX is loaded.

Returns True for success, False for failure.

top
LoadPfxData2
function CkCert_LoadPfxData2(objHandle: HCkCert;
    pByteData: pbyte;
    szByteData: LongWord;
    password: PWideChar): wordbool; stdcall;

Loads a PFX from an in-memory image of a PFX file. Note: If the PFX contains multiple certificates, the 1st certificate in the PFX is loaded.

Returns True for success, False for failure.

top
LoadPfxFile
function CkCert_LoadPfxFile(objHandle: HCkCert;
    pfxPath: PWideChar;
    password: PWideChar): wordbool; stdcall;

Loads a PFX file. Note: If the PFX contains multiple certificates, the 1st certificate in the PFX is loaded.

Returns True for success, False for failure.

top
LoadTaskResult
function CkCert_LoadTaskResult(objHandle: HCkCert;
    task: HCkTask): wordbool; stdcall;
Introduced in version 9.5.0.52

Loads the certificate from a completed asynchronous task.

Returns True for success, False for failure.

top
PemFileToDerFile
function CkCert_PemFileToDerFile(objHandle: HCkCert;
    fromPath: PWideChar;
    toPath: PWideChar): wordbool; stdcall;

Converts a PEM file to a DER file.

Returns True for success, False for failure.

top
SaveToFile
function CkCert_SaveToFile(objHandle: HCkCert;
    path: PWideChar): wordbool; stdcall;

Saves a certificate object to a .cer file.

Returns True for success, False for failure.

top
SetCloudSigner
function CkCert_SetCloudSigner(objHandle: HCkCert;
    json: HCkJsonObject): wordbool; stdcall;
Introduced in version 9.5.0.96

Provides information for a cloud signing service to do the signing via a remote signing server. Current supported services are AWS KMS, Azure Key Vault, and ARSS (Aruba Remote Signing Service). See the examples below.

Returns True for success, False for failure.

top
SetFromEncoded
function CkCert_SetFromEncoded(objHandle: HCkCert;
    encodedCert: PWideChar): wordbool; stdcall;

Initializes the certificate object from a base64 encoded string representation of the certificate's binary DER format.

Returns True for success, False for failure.

top
SetPrivateKey
function CkCert_SetPrivateKey(objHandle: HCkCert;
    privKey: HCkPrivateKey): wordbool; stdcall;

Used to associate a private key with the certificate for subsequent (PKCS7) signature creation or decryption.

Returns True for success, False for failure.

top
SetPrivateKeyPem
function CkCert_SetPrivateKeyPem(objHandle: HCkCert;
    privKeyPem: PWideChar): wordbool; stdcall;

Same as SetPrivateKey, but the key is provided in unencrypted PEM format. (Note: The privKeyPem is not a file path, it is the actual PEM text.)

Returns True for success, False for failure.

top
UploadToCloud
function CkCert_UploadToCloud(objHandle: HCkCert;
    jsonIn: HCkJsonObject;
    jsonOut: HCkJsonObject): wordbool; stdcall;
Introduced in version 9.5.0.96

This is an open-ended method to accomodate uploading the private key to a cloud service, such as AWS KMS, or Azure Key Vault. For details, see the examples below.

Returns True for success, False for failure.

top
UploadToCloudAsync (1)
function CkCert_UploadToCloudAsync(objHandle: HCkCert;
    jsonIn: HCkJsonObject;
    jsonOut: HCkJsonObject): HCkTask; stdcall;
Introduced in version 9.5.0.96

Creates an asynchronous task to call the UploadToCloud method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
UseCertVault
function CkCert_UseCertVault(objHandle: HCkCert;
    vault: HCkXmlCertVault): wordbool; stdcall;
Introduced in version 9.5.0.40

Adds an XML certificate vault to the object's internal list of sources to be searched for certificates for help in building certificate chains and verifying the certificate signature to the trusted root.

Returns True for success, False for failure.

More Information and Examples
top
VerifySignature
function CkCert_VerifySignature(objHandle: HCkCert): wordbool; stdcall;
Introduced in version 9.5.0.40

Verifies the certificate signature, as well as the signatures of all certificates in the chain of authentication to the trusted root. Returns True if all signatures are verified to the trusted root. Otherwise returns False.

top
X509PKIPathv1
function CkCert_X509PKIPathv1(objHandle: HCkCert;
    outStr: HCkString): wordbool; stdcall;
function CkCert__x509PKIPathv1(objHandle: HCkCert): PWideChar; stdcall;
Introduced in version 9.5.0.77

Returns the base64 representation of an X509PKIPathv1 containing just the calling certificate. This is typically used in an X.509 Binary Security Token. It is a PKIPath that contains an ordered list of X.509 public certificates packaged in a PKIPath. The X509PKIPathv1 token type may be used to represent a certificate path. (This is sometimes used in XAdES signatures.)

Returns True for success, False for failure.

top

Events

Chilkat supports event callbacks for the Delphi DLL starting in version 9.5.0.82.

AbortCheck
function MyAbortCheck(): Integer; cdecl;
Introduced in version 9.5.0.82

Provides the opportunity for a method call to be aborted. The AbortCheck event is fired periodically based on the value of the HeartbeatMs property. If HeartbeatMs is 0, then no AbortCheck events will fire. As an example, to fire 5 AbortCheck events per second, set the HeartbeatMs property equal to 200. Return True to abort; return False to continue (not abort)

More Information and Examples
top
PercentDone
function MyPercentDone(pctDone: Integer): Integer; cdecl;
Introduced in version 9.5.0.82

Provides the percentage completed for any method that involves network communications or time-consuming processing (assuming it is a method where a percentage completion can be measured). This event is only fired when it is possible to know a percentage completion, and when it makes sense to express the operation as a percentage completed. The pctDone argument will have a value from 1 to 100. For operations (Chilkat method calls) that complete very quickly, the number of PercentDone callbacks will vary, but the final callback should have a value of 100. For long running operations, no more than one callback per percentage point will occur (for example: 1, 2, 3, ... 98, 99, 100).

The PercentDone callback counts as an AbortCheck event. For method calls that complete quickly such that PercentDone events fire, it may be that AbortCheck events don't fire because the opportunity to abort is already provided in the PercentDone callback. For time consuming operations, where the amount of time between PercentDone callbacks are long, AbortCheck callbacks may be used to allow for the operation to be aborted in a more responsive manner.

Return True to abort; return False to continue (not abort)

More Information and Examples
top
ProgressInfo
procedure MyProgressInfo(name: PWideChar; value: PWideChar) cdecl;
Introduced in version 9.5.0.82

A general name/value event that provides information about what is happening during a method call. To find out what information is available, write code to handle this event and log the name/value pairs. Most are self-explanatory.

More Information and Examples
top
TaskCompleted
procedure MyTaskCompleted(task: HCkTask) cdecl;
Introduced in version 9.5.0.82

Called in the background thread when an asynchronous task completes.

top