CkJavaKeyStore Ruby Reference Documentation
CkJavaKeyStore
Current Version: 10.0.0
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.
Object Creation
obj = Chilkat::CkJavaKeyStore.new()
Properties
DebugLogFilePath
# ckStr is a CkString
javaKeyStore.get_DebugLogFilePath(ckStr);
strVal = javaKeyStore.debugLogFilePath();
javaKeyStore.put_DebugLogFilePath(strVal);
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:
- a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
- the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
- there is an internal problem (bug) in the Chilkat code that causes the hang.
LastErrorHtml
# ckStr is a CkString
javaKeyStore.get_LastErrorHtml(ckStr);
strVal = javaKeyStore.lastErrorHtml();
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.
topLastErrorText
# ckStr is a CkString
javaKeyStore.get_LastErrorText(ckStr);
strVal = javaKeyStore.lastErrorText();
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.
LastErrorXml
# ckStr is a CkString
javaKeyStore.get_LastErrorXml(ckStr);
strVal = javaKeyStore.lastErrorXml();
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.
topLastMethodSuccess
boolVal = javaKeyStore.get_LastMethodSuccess();
javaKeyStore.put_LastMethodSuccess(boolVal);
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.
topNumPrivateKeys
intVal = javaKeyStore.get_NumPrivateKeys();
The number of private keys contained within the keystore. Each private key has an alias and certificate chain associated with it.
topNumSecretKeys
intVal = javaKeyStore.get_NumSecretKeys();
The number of secret keys (such as AES keys) contained within the keystore. Each secret key can have an alias associated with it.
NumTrustedCerts
intVal = javaKeyStore.get_NumTrustedCerts();
The number of trusted certificates contained within the keystore. Each certificate has an alias (identifying string) associated with it.
topRequireCompleteChain
boolVal = javaKeyStore.get_RequireCompleteChain();
javaKeyStore.put_RequireCompleteChain(boolVal);
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.
topUtf8
boolVal = javaKeyStore.get_Utf8();
javaKeyStore.put_Utf8(boolVal);
When set to true, all "const char *" arguments are interpreted as utf-8 strings. If set to false (the default), then "const char *" arguments are interpreted as ANSI strings. Also, when set to true, and Chilkat method returning a "const char *" is returning the utf-8 representation. If set to false, all "const char *" return values are ANSI strings.
topVerboseLogging
boolVal = javaKeyStore.get_VerboseLogging();
javaKeyStore.put_VerboseLogging(boolVal);
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
boolVal = javaKeyStore.get_VerifyKeyedDigest();
javaKeyStore.put_VerifyKeyedDigest(boolVal);
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
# ckStr is a CkString
javaKeyStore.get_Version(ckStr);
strVal = javaKeyStore.version();
Methods
AddPfx
# alias is a string
# password is a string
status = javaKeyStore.AddPfx(pfx, alias, password);
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
# alias is a string
# password is a string
status = javaKeyStore.AddPrivateKey(cert, alias, password);
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
# encoding is a string
# algorithm is a string
# alias is a string
# password is a string
status = javaKeyStore.AddSecretKey(encodedKeyBytes, encoding, algorithm, alias, password);
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
Adds a trusted certificate to the Java keystore object.
Returns true for success, false for failure.
ChangePassword
# oldPassword is a string
# newPassword is a string
status = javaKeyStore.ChangePassword(index, oldPassword, newPassword);
Changes the password for a private key.
Returns true for success, false for failure.
FindCertChain
# caseSensitive is a boolean
status = javaKeyStore.FindCertChain(alias, caseSensitive);
Finds and returns the certificate chain for the private key with the specified alias.
Returns nil on failure
topFindPrivateKey
# alias is a string
# caseSensitive is a boolean
status = javaKeyStore.FindPrivateKey(password, alias, caseSensitive);
Finds and returns the private key with the specified alias.
Returns nil on failure
FindTrustedCert
# alias is a string
# caseSensitive is a boolean
ret_cert = javaKeyStore.FindTrustedCert(alias, caseSensitive);
GetCertChain
status = javaKeyStore.GetCertChain(index);
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
# index is an integer
status = javaKeyStore.GetPrivateKey(password, index);
Returns the Nth private key contained within the keystore. The 1st private key is at index 0.
Returns nil on failure
topGetPrivateKeyAlias
# outStr is a CkString (output)
status = javaKeyStore.GetPrivateKeyAlias(index, outStr);
retStr = javaKeyStore.getPrivateKeyAlias(index);
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.
topGetSecretKey
# index is an integer
# encoding is a string
# outStr is a CkString (output)
status = javaKeyStore.GetSecretKey(password, index, encoding, outStr);
retStr = javaKeyStore.getSecretKey(password, index, encoding);
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.
GetSecretKeyAlias
# outStr is a CkString (output)
status = javaKeyStore.GetSecretKeyAlias(index, outStr);
retStr = javaKeyStore.getSecretKeyAlias(index);
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.
GetTrustedCert
status = javaKeyStore.GetTrustedCert(index);
Returns the Nth trusted certificate contained within the keystore. The 1st certificate is at index 0.
Returns nil on failure
topGetTrustedCertAlias
# outStr is a CkString (output)
status = javaKeyStore.GetTrustedCertAlias(index, outStr);
retStr = javaKeyStore.getTrustedCertAlias(index);
Returns the Nth trusted certificate alias contained within the keystore. The 1st certificate is at index 0.
Returns true for success, false for failure.
topLoadBd
LoadBinary
# jksData is a CkByteData
status = javaKeyStore.LoadBinary(password, jksData);
LoadEncoded
# jksEncData is a string
# encoding is a string
status = javaKeyStore.LoadEncoded(password, jksEncData, encoding);
Loads a Java keystore from an encoded string (such as base64, hex, etc.)
Returns true for success, false for failure.
topLoadFile
# path is a string
status = javaKeyStore.LoadFile(password, path);
Loads a Java keystore from a file.
Returns true for success, false for failure.
LoadJwkSet
# jwkSet is a CkJsonObject
status = javaKeyStore.LoadJwkSet(password, jwkSet);
Loads the Java KeyStore from a JSON Web Key (JWK) Set.
Returns true for success, false for failure.
RemoveEntry
# index is an integer
status = javaKeyStore.RemoveEntry(entryType, index);
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
# index is an integer
# alias is a string
status = javaKeyStore.SetAlias(entryType, index, alias);
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
# outBytes is a CkByteData (output)
status = javaKeyStore.ToBinary(password, outData);
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
# encoding is a string
# outStr is a CkString (output)
status = javaKeyStore.ToEncodedString(password, encoding, outStr);
retStr = javaKeyStore.toEncodedString(password, encoding);
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.
topToFile
# path is a string
status = javaKeyStore.ToFile(password, path);
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
# sbJwkSet is a CkStringBuilder
status = javaKeyStore.ToJwkSet(password, sbJwkSet);
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
status = javaKeyStore.ToPem(password);
ToPfx
status = javaKeyStore.ToPfx(password);
UseCertVault
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