JavaKeyStore Delphi DLL Reference Documentation
JavaKeyStore
Current Version: 10.1.2
API to read, write, access, and update Java key stores (JKS format).
This class also supports the JCEKS format starting in Chilkat v9.5.0.66.
Create/Dispose
var myObject: HCkJavaKeyStore; begin myObject := CkJavaKeyStore_Create(); // ... CkJavaKeyStore_Dispose(myObject); end;
Creates an instance of the HCkJavaKeyStore object and returns a handle (i.e. a Pointer). The handle is passed in the 1st argument for the functions listed on this page.
Objects created by calling CkJavaKeyStore_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function.
Properties
DebugLogFilePath
procedure CkJavaKeyStore_putDebugLogFilePath(objHandle: HCkJavaKeyStore; newPropVal: PWideChar); stdcall;
function CkJavaKeyStore__debugLogFilePath(objHandle: HCkJavaKeyStore): PWideChar; stdcall;
If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.
Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.
Possible causes of hangs include:
- A timeout property set to 0, indicating an infinite timeout.
- A hang occurring within an event callback in the application code.
- An internal bug in the Chilkat code causing the hang.
See the notes about PWideChar memory ownership and validity.
LastErrorHtml
function CkJavaKeyStore__lastErrorHtml(objHandle: HCkJavaKeyStore): PWideChar; stdcall;
Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
See the notes about PWideChar memory ownership and validity.
topLastErrorText
function CkJavaKeyStore__lastErrorText(objHandle: HCkJavaKeyStore): PWideChar; stdcall;
Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
See the notes about PWideChar memory ownership and validity.
LastErrorXml
function CkJavaKeyStore__lastErrorXml(objHandle: HCkJavaKeyStore): PWideChar; stdcall;
Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
See the notes about PWideChar memory ownership and validity.
topLastMethodSuccess
procedure CkJavaKeyStore_putLastMethodSuccess(objHandle: HCkJavaKeyStore; newPropVal: wordbool); stdcall;
Indicates the success or failure of the most recent method call: True means success, False means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages.
topNumPrivateKeys
The number of private keys contained within the keystore. Each private key has an alias and certificate chain associated with it.
topNumSecretKeys
The number of secret keys (such as AES keys) contained within the keystore. Each secret key can have an alias associated with it.
NumTrustedCerts
The number of trusted certificates contained within the keystore. Each certificate has an alias (identifying string) associated with it.
topRequireCompleteChain
procedure CkJavaKeyStore_putRequireCompleteChain(objHandle: HCkJavaKeyStore; newPropVal: wordbool); stdcall;
If True, then adding a private key to the JKS only succeeds if the certificate chain can be completed to the root certificate. A root certificate is either a trusted CA root or a self-signed certificate. If False, then incomplete certificate chains are allowed. The default value is True.
topVerboseLogging
procedure CkJavaKeyStore_putVerboseLogging(objHandle: HCkJavaKeyStore; 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.
topVerifyKeyedDigest
procedure CkJavaKeyStore_putVerifyKeyedDigest(objHandle: HCkJavaKeyStore; newPropVal: wordbool); stdcall;
If True, then the keystore's keyed digest is required to pass validation (password required) for any of the load methods (such as LoadFile, LoadBinary, or LoadEncoded). If False, then a keystore may be loaded into memory without password validation (if a null or empty string is passed to the load method). The default value of this property is True.
topVersion
function CkJavaKeyStore__version(objHandle: HCkJavaKeyStore): PWideChar; stdcall;
Version of the component/library, such as "10.1.0"
See the notes about PWideChar memory ownership and validity.
Methods
AddPfx
pfx: HCkPfx;
alias: PWideChar;
password: PWideChar): wordbool; stdcall;
Adds the contents of a PFX or PKCS #12 (.p12) to the Java keystore object. One JKS entry per private key found in the PKCS12 is added. The certs found within the PCKS12 are used to build the certificate chains for each private key. (A typical PFX file contains a single private key along with its associated certificate, and the certificates in the chain of authentication to the root CA cert.)
This method does not add trusted certificate entries to the JKS.
The specified alias is applied to the 1st private key found. If the alias is empty, then the alias is obtained from the cert/PFX in the following order of preference:
- Certificate's subject common name
- Certificate's subject email address
- Certificate's friendly name found in the PKCS9 attributes of the PKCS12
- Certificate's serial number
If multiple private keys are found in the PKCS12, then all but the first will automaticallly be assigned aliases using the preference just described.
The UseCertVault method may be called to provide additional certificates for the automatic construction of the certificate chains. If the RequireCompleteChain property is set to True, then this method will fail if any certificate chain is not completed to the root. The TrustedRoots class may be used to provide a source for obtaining trusted CA roots if these are not already present within the PKCS12.
Returns True for success, False for failure.
topAddPrivateKey
cert: HCkCert;
alias: PWideChar;
password: PWideChar): wordbool; stdcall;
Adds a private key entry to the JKS. Both the private key and certificate chain are obtained from the certificate object that is passed in the 1st argument.
If the alias is empty, then the alias is automatically chosen based on the certificate's information, in the following order of preference:
- Certificate's subject common name
- Certificate's subject email address
- Certificate's serial number
The UseCertVault method may be called to provide additional certificates for the automatic construction of the certificate chains. If the RequireCompleteChain property is set to True, then this method will fail if the certificate chain is not completed to the root. The TrustedRoots class may be used to provide a source for obtaining trusted CA roots.
Returns True for success, False for failure.
topAddSecretKey
encodedKeyBytes: PWideChar;
encoding: PWideChar;
algorithm: PWideChar;
alias: PWideChar;
password: PWideChar): wordbool; stdcall;
Adds a secret (symmetric) key entry to the JKS. This adds a symmetric key, which is simply a number of binary bytes (such as 16 bytes for a 128-bit AES key). The encodedKeyBytes provides the actual bytes of the symmetric key, in an encoded string form. The encoding indicates the encoding of encodedKeyBytes (such as "base64", "hex", "base64url", etc.) The algorithm describes the symmetric algorithm, such as "AES". The alias is the password used to seal (encrypt) the key bytes.
Note: The algorithm describes the usage of the encodedKeyBytes. For example, if encodedKeyBytes contains the 16 bytes of a 128-bit AES key, then algorithm should be set to "AES". The actual encryption algorithm used to seal the key within the JCEKS is PBEWithMD5AndTripleDES, which is part of the JCEKS specification.
Returns True for success, False for failure.
AddTrustedCert
cert: HCkCert;
alias: PWideChar): wordbool; stdcall;
Adds a trusted certificate to the Java keystore object.
Returns True for success, False for failure.
ChangePassword
index: Integer;
oldPassword: PWideChar;
newPassword: PWideChar): wordbool; stdcall;
Changes the password for a private key.
Returns True for success, False for failure.
FindCertChain
alias: PWideChar;
caseSensitive: wordbool): HCkCertChain; stdcall;
Finds and returns the certificate chain for the private key with the specified alias.
Returns nil on failure
topFindPrivateKey
password: PWideChar;
alias: PWideChar;
caseSensitive: wordbool): HCkPrivateKey; stdcall;
Finds and returns the private key with the specified alias.
Returns nil on failure
FindTrustedCert
alias: PWideChar;
caseSensitive: wordbool): HCkCert; stdcall;
GetCertChain
index: Integer): HCkCertChain; stdcall;
Returns the certificate chain associated with the Nth private key contained within the keystore. The 1st private key is at index 0.
Returns nil on failure
GetPrivateKey
password: PWideChar;
index: Integer): HCkPrivateKey; stdcall;
Returns the Nth private key contained within the keystore. The 1st private key is at index 0.
Returns nil on failure
topGetPrivateKeyAlias
index: Integer;
outStr: HCkString): wordbool; stdcall;
function CkJavaKeyStore__getPrivateKeyAlias(objHandle: HCkJavaKeyStore;
index: Integer): PWideChar; stdcall;
Returns the Nth private key alias contained within the keystore. The 1st private key is at index 0.
Returns True for success, False for failure.
See the notes about PWideChar memory ownership and validity.
topGetSecretKey
password: PWideChar;
index: Integer;
encoding: PWideChar;
outStr: HCkString): wordbool; stdcall;
function CkJavaKeyStore__getSecretKey(objHandle: HCkJavaKeyStore;
password: PWideChar;
index: Integer;
encoding: PWideChar): PWideChar; stdcall;
Returns the Nth secret key contained within the keystore. The 1st secret key is at index 0. The bytes of the secret key are returned in the specified encoding. (such as hex, base64, base64url, etc.)
Returns True for success, False for failure.
See the notes about PWideChar memory ownership and validity.
GetSecretKeyAlias
index: Integer;
outStr: HCkString): wordbool; stdcall;
function CkJavaKeyStore__getSecretKeyAlias(objHandle: HCkJavaKeyStore;
index: Integer): PWideChar; stdcall;
Returns the Nth secret key alias contained within the keystore. The 1st secret key is at index 0.
Returns True for success, False for failure.
See the notes about PWideChar memory ownership and validity.
GetTrustedCert
index: Integer): HCkCert; stdcall;
Returns the Nth trusted certificate contained within the keystore. The 1st certificate is at index 0.
Returns nil on failure
topGetTrustedCertAlias
index: Integer;
outStr: HCkString): wordbool; stdcall;
function CkJavaKeyStore__getTrustedCertAlias(objHandle: HCkJavaKeyStore;
index: Integer): PWideChar; stdcall;
Returns the Nth trusted certificate alias contained within the keystore. The 1st certificate is at index 0.
Returns True for success, False for failure.
See the notes about PWideChar memory ownership and validity.
topLoadBd
password: PWideChar;
bd: HCkBinData): wordbool; stdcall;
LoadBinary
password: PWideChar;
jksData: HCkByteData): wordbool; stdcall;
LoadEncoded
password: PWideChar;
jksEncData: PWideChar;
encoding: PWideChar): wordbool; stdcall;
Loads a Java keystore from an encoded string (such as base64, hex, etc.)
Returns True for success, False for failure.
topLoadFile
password: PWideChar;
path: PWideChar): wordbool; stdcall;
Loads a Java keystore from a file.
Returns True for success, False for failure.
LoadJwkSet
password: PWideChar;
jwkSet: HCkJsonObject): wordbool; stdcall;
Loads the Java KeyStore from a JSON Web Key (JWK) Set.
Returns True for success, False for failure.
RemoveEntry
entryType: Integer;
index: Integer): wordbool; stdcall;
Removes the Nth trusted certificate or private key entry from the keystore. The entryType indicates whether it is a trusted root or private key entry (1 = trusted certificate entry, 2 = private key entry). The 1st entry is at index 0.
Returns True for success, False for failure.
topSetAlias
entryType: Integer;
index: Integer;
alias: PWideChar): wordbool; stdcall;
Sets the alias name for a trusted certificate or private key entry. The entryType indicates whether it is a trusted root or private key entry (1 = trusted certificate entry, 2 = private key entry). The 1st entry is at index 0.
Returns True for success, False for failure.
topToBinary
password: PWideChar;
outBytes: HCkByteData): wordbool; stdcall;
Writes the key store to in-memory bytes. The password is used for the keyed hash of the entire JKS file. (Each private key within the file may use different passwords, and these are provided when the private key is added via the AddPrivateKey method.)
Returns True for success, False for failure.
topToEncodedString
password: PWideChar;
encoding: PWideChar;
outStr: HCkString): wordbool; stdcall;
function CkJavaKeyStore__toEncodedString(objHandle: HCkJavaKeyStore;
password: PWideChar;
encoding: PWideChar): PWideChar; stdcall;
Writes the key store to an encoded string. The encoding can be any encoding such as "base64" or "hex". The password is used for the keyed hash of the entire JKS file. (Each private key within the file may use different passwords, and these are provided when the private key is added via the AddPrivateKey method.)
Returns True for success, False for failure.
See the notes about PWideChar memory ownership and validity.
topToFile
password: PWideChar;
path: PWideChar): wordbool; stdcall;
Writes the key store to a file. The password is used for the keyed hash of the entire JKS file. (Each private key within the file may use different passwords, and these are provided when the private key is added via the AddPrivateKey method.)
Returns True for success, False for failure.
ToJwkSet
password: PWideChar;
sbJwkSet: HCkStringBuilder): wordbool; stdcall;
Returns the private keys in JSON JWK Set format. The JWK identifier (kid) will be set from the key alias in the store.
Returns True for success, False for failure.
ToPem
ToPfx
UseCertVault
vault: HCkXmlCertVault): wordbool; stdcall;
Adds an XML certificate vault to the object's internal list of sources to be searched for certificates for help in building certificate chains to a root certificate.
Returns True for success, False for failure.
top