JavaKeyStore Rust Reference Documentation
JavaKeyStore
Current Version: 11.6.1
Chilkat.JavaKeyStore
Read Java keystore data into memory, inspect or modify its contents, and
save the updated keystore when changes are complete.
Work with private keys stored under aliases, including their associated
certificate chains and entry-specific passwords.
Add, retrieve, and manage trusted certificate entries used for trust
stores, TLS validation, and Java-based security configuration.
Store and retrieve symmetric secret keys when the keystore is used for
application key material in addition to certificates.
Import private-key entries from PFX/P12 and export or convert keystore
contents to PEM, PFX, or JWK Set format.
Enumerate aliases, locate entries, rename or manage entry names, and
organize keys and certificates by application-specific identifiers.
For an extended overview, see
JavaKeyStore Class Overview.
Load, inspect, modify, convert, and save Java keystore data.
Chilkat.JavaKeyStore is the Chilkat class for working with Java
keystore data. It supports private-key entries with aliases and certificate
chains, trusted certificate entries, and secret-key entries. It can load and
save keystores, import private-key entries from PFX, add trusted certificates
and symmetric keys, retrieve private keys and certificate chains, manage
aliases, change private-key passwords, and convert keystore contents to PEM,
PFX, or JWK Set format.
Load and save keystores
Private-key entries
Trusted certificates
Secret-key entries
Import and convert
Alias management
JavaKeyStore when the data is
organized as a Java keystore; use Cert, PrivateKey,
Pfx, or TrustedRoots when working directly with
individual certificate or key objects.
Object Creation
// Cargo.toml:
// [dependencies]
// chilkat = "11.6"
use chilkat::JavaKeyStore;
// Once per process, before any other Chilkat call:
chilkat::unlock_bundle("Anything for 30-day trial")?; // shorthand for Global::new().unlock_bundle(..)
let java_key_store = JavaKeyStore::new();
// ... the native object is freed when `java_key_store` goes out of scope.Creates the underlying native Chilkat object (JavaKeyStore also implements Default). Every method takes &self, so the object never needs to be declared mut. A JavaKeyStore is Send but not Sync: it may be moved to another thread, but a reference to it cannot be shared between threads at the same time.
The native object is freed when the JavaKeyStore is dropped — when it goes out of scope, or explicitly with drop(java_key_store). There is no Dispose method to call.
Errors
Methods that can fail return chilkat::Result<T>, which is Result<T, chilkat::Error>: a method whose only outcome is success or failure returns Result<()>, a method producing a string or an object returns Result<String> or Result<JavaKeyStore>. The error carries the object's LastErrorText at the time of the failure (Error::last_error_text), the class and method names, and implements std::error::Error, so ? works in any function returning chilkat::Result or a Box<dyn Error>. Properties never fail, and methods that answer a question (has_..., is_..., ...) return a plain bool.
match java_key_store.some_method(...) {
Ok(value) => println!("{value:?}"),
Err(e) => eprintln!("{}", e.last_error_text()),
}
Properties
DebugLogFilePath
pub fn debug_log_file_path(&self) -> String
pub fn set_debug_log_file_path(&self, value: &str)
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.
LastErrorHtml
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.
topLastErrorText
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.
LastErrorXml
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.
topLastMethodSuccess
pub fn last_method_success(&self) -> bool
pub fn set_last_method_success(&self, value: bool)
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. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.
NumPrivateKeys
pub fn num_private_keys(&self) -> i32
Returns the number of private-key entries currently contained in the keystore. Each private-key entry has an alias, a protected private key, and an associated certificate chain. Valid private-key indexes range from 0 through NumPrivateKeys - 1.
PrivateKeyAt and PrivateKeyOf. It is distinct from the store password used when loading or saving the complete keystore.NumSecretKeys
pub fn num_secret_keys(&self) -> i32
Returns the number of symmetric secret-key entries currently contained in the keystore. Examples include AES, HMAC, Blowfish, and ChaCha key material. Valid indexes range from 0 through NumSecretKeys - 1.
NumTrustedCerts
pub fn num_trusted_certs(&self) -> i32
Returns the number of trusted-certificate entries currently contained in the keystore. Each entry contains one certificate and an alias. Valid indexes range from 0 through NumTrustedCerts - 1.
RequireCompleteChain
pub fn require_complete_chain(&self) -> bool
pub fn set_require_complete_chain(&self, value: bool)
Controls whether a complete certificate chain is required when a private-key entry is added. The default is . When enabled, trueAddPrivateKey and AddPfx fail if Chilkat cannot build the chain through the issuing certificates to a root or self-signed certificate. When set to , an incomplete chain may be stored.false
UseCertVault to make additional certificates available for chain construction. Trusted CA roots supplied through Chilkat trusted-root facilities may also help complete the chain. This property affects chain construction while adding entries; it does not perform application trust-policy validation.VerboseLogging
pub fn verbose_logging(&self) -> bool
pub fn set_verbose_logging(&self, value: bool)
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.
VerifyKeyedDigest
pub fn verify_keyed_digest(&self) -> bool
pub fn set_verify_keyed_digest(&self, value: bool)
Controls validation of the keystore-level integrity digest when a JKS or JCEKS store is loaded. The default is . In this mode, the load method uses the supplied store password to verify that the serialized keystore has not been altered and that the password is appropriate for the store.true
When set to , a load method may be called with an empty password to read the store without validating its integrity digest.false
Version
Methods
AddPfx
Imports the private-key entries found in the Pfx object supplied in pfx. One Java keystore private-key entry is added for each private key in the PFX/PKCS #12 data. Certificates from the PFX are used to construct the certificate chain associated with each imported private key.
alias_name specifies the alias for the first imported private key. If it is empty, Chilkat chooses an alias in this order:
- The subject common name of the private key certificate.
- The subject email address.
- The PKCS #12 friendly-name attribute.
- The certificate serial number.
If the PFX contains additional private keys, their aliases are chosen automatically using the same preference order. password becomes the entry password used to protect the imported private keys in the Java keystore.
AddTrustedCert separately when a certificate should become an explicit trust entry.RequireCompleteChain is enabled, the method fails when any imported private-key chain cannot be completed. UseCertVault can supply additional issuer certificates.Returns Ok(()) for success, Err(chilkat::Error) for failure.
AddPrivateKey
Adds a private-key entry using the certificate in cert. The Cert object must have access to its associated private key. Chilkat obtains that private key and builds the certificate chain beginning with cert.
alias_name is the entry alias. If it is empty, Chilkat chooses an alias from the certificate in this order: subject common name, subject email address, then certificate serial number. password is the password used to protect the private key inside the keystore.
RequireCompleteChain is enabled, the method fails unless the chain can be completed. Use UseCertVault when additional issuer certificates are needed.Returns Ok(()) for success, Err(chilkat::Error) for failure.
AddSecretKey
Adds a symmetric secret-key entry. encoded_key_bytes contains the key bytes encoded as text, and encoding names that encoding, such as hex, base64, or base64url. algorithm records the key algorithm, such as AES, HMAC_SHA256, or CHACHA. alias_name is the alias, and password is the password used to protect the key entry.
The algorithm value describes the intended key type; it does not transform the supplied key bytes. For example, a 128-bit AES key is supplied as exactly 16 decoded bytes and algorithm is set to AES.
PBEWithMD5AndTripleDES mechanism defined by that format. Use this format when interoperability requires JCEKS, and protect both the entry password and the resulting file.Returns Ok(()) for success, Err(chilkat::Error) for failure.
AddTrustedCert
Adds cert as a trusted-certificate entry under the alias supplied in alias_name. A trusted-certificate entry contains the certificate only; it does not contain a private key or a certificate chain.
Returns Ok(()) for success, Err(chilkat::Error) for failure.
CertChainAt
Loads cert_chain with the certificate chain belonging to the private-key entry at zero-based index index. Valid indexes range from 0 through NumPrivateKeys - 1. The first certificate contains the public key corresponding to the private key; subsequent certificates are issuing certificates toward the root.
Returns Ok(()) for success, Err(chilkat::Error) for failure.
CertChainOf
Searches the private-key entries for an alias equal to alias_name and loads the matching certificate chain into cert_chain. case_sensitive controls whether the alias comparison is case-sensitive. The first certificate in the chain contains the public key corresponding to the private key.
Returns Ok(()) for success, Err(chilkat::Error) for failure.
ChangePassword
Changes the password protecting the private-key entry at index. Indexing begins at 0. old_password is the current entry password and new_password is the new entry password.
Returns Ok(()) for success, Err(chilkat::Error) for failure.
GetPrivateKeyAlias
Returns the alias of the private-key entry at index. Indexing begins at 0; valid indexes range from 0 through NumPrivateKeys - 1.
Returns Err(chilkat::Error) on failure.
GetSecretKey
Recovers the secret-key entry at index and returns its raw key bytes encoded using encoding. password is the password protecting that entry. Indexing begins at 0. Common output encodings include hex, base64, and base64url.
Returns Err(chilkat::Error) on failure.
GetSecretKeyAlias
Returns the alias of the secret-key entry at index. Indexing begins at 0; valid indexes range from 0 through NumSecretKeys - 1.
Returns Err(chilkat::Error) on failure.
GetTrustedCertAlias
Returns the alias of the trusted-certificate entry at index. Indexing begins at 0; valid indexes range from 0 through NumTrustedCerts - 1.
Returns Err(chilkat::Error) on failure.
LoadBd
Loads a JKS or JCEKS keystore from the bytes currently contained in bd. password is the store password used for integrity verification when VerifyKeyedDigest is enabled.
Returns Ok(()) for success, Err(chilkat::Error) for failure.
LoadEncoded
Decodes the serialized keystore text in jks_enc_data using the binary encoding named by encoding, then loads the resulting JKS or JCEKS bytes. Common encodings include base64, hex, and base64url. password is the store password used for integrity verification.
encoding describes how binary keystore bytes are represented as text. It does not name the keystore format and does not protect the data cryptographically.Returns Ok(()) for success, Err(chilkat::Error) for failure.
LoadFile
Loads a JKS or JCEKS keystore from the file at path. password is the store password used to verify the keystore-level integrity digest when VerifyKeyedDigest is enabled.
Chilkat.Pfx when the input is a .p12 or .pfx container.Returns Ok(()) for success, Err(chilkat::Error) for failure.
LoadJwkSet
Loads supported keys from the JWK Set in jwk_set into this Java keystore object. password is used to protect imported private-key and secret-key entries. A JWK kid value is used as the entry alias when present.
jwk_set should contain a JSON object with a keys array. Private asymmetric JWKs contain private parameters such as d; symmetric JWKs use kty: "oct" and contain the key in k. Treat the input as sensitive whenever it contains private or symmetric key material.Returns Ok(()) for success, Err(chilkat::Error) for failure.
PrivateKeyAt
Loads priv_key with the private key at zero-based index index. password is the password protecting that private-key entry. Valid indexes range from 0 through NumPrivateKeys - 1.
password is not necessarily the password used to load the complete keystore. Java keystores can protect each private-key entry with a different password.Returns Ok(()) for success, Err(chilkat::Error) for failure.
PrivateKeyOf
Searches the private-key entries for an alias equal to alias_name and loads the matching private key into priv_key. password is the password protecting that key entry, and case_sensitive controls whether the alias comparison is case-sensitive.
Returns Ok(()) for success, Err(chilkat::Error) for failure.
RemoveEntry
Removes an entry selected by type and zero-based index. entry_type uses the following documented values:
entry_type | Entry selected |
|---|---|
1 | Trusted-certificate entry; index indexes the trusted-certificate list. |
2 | Private-key entry; index indexes the private-key list. |
index is an index within the selected entry category, not an index across all entries in the keystore.
ToFile, ToBd, or another To* method to persist the updated keystore.Returns Ok(()) for success, Err(chilkat::Error) for failure.
SetAlias
Changes the alias of an entry selected by type and zero-based index. entry_type uses the following documented values:
entry_type | Entry selected |
|---|---|
1 | Trusted-certificate entry; index indexes the trusted-certificate list. |
2 | Private-key entry; index indexes the private-key list. |
alias_name is the new alias. The index is relative to the selected category, not the complete set of keystore entries.
Returns Ok(()) for success, Err(chilkat::Error) for failure.
ToBd
Serializes the current Java keystore and writes the complete JKS or JCEKS file image to bd. password is the store password used to create the keystore-level integrity digest.
password does not automatically change those entry passwords.Returns Ok(()) for success, Err(chilkat::Error) for failure.
ToEncodedString
Serializes the current Java keystore and returns the resulting JKS or JCEKS bytes encoded as text using encoding. Common choices include base64, hex, and base64url. password is the store password used to create the keystore-level integrity digest.
Returns Err(chilkat::Error) on failure.
ToFile
Serializes the current Java keystore and writes the complete JKS or JCEKS file image to path. password is the store password used to create the keystore-level integrity digest.
ChangePassword for private-key entries when needed.Returns Ok(()) for success, Err(chilkat::Error) for failure.
ToJwkSet
Exports supported private-key and secret-key entries as a JSON Web Key Set and writes the JSON to sb_jwk_set. password is used to recover protected key entries. Each exported JWK receives a kid value derived from the keystore alias.
d or symmetric parameter k contains secret key material. Protect the resulting JSON as carefully as the original keystore and do not log or transmit it over an untrusted channel.Returns Ok(()) for success, Err(chilkat::Error) for failure.
ToPemObj
Converts the keystore material supported by the Pem class and loads the result into pem_obj. password is used to decrypt private-key entries during the conversion.
Pem object receives the converted material in memory. Its own export methods and properties control whether later PEM text is encrypted and how it is formatted. Treat unencrypted private-key PEM as sensitive data.Returns Ok(()) for success, Err(chilkat::Error) for failure.
ToPfxObj
Converts the certificates and recoverable private-key entries in the Java keystore and loads the result into pfx_obj. password is used to decrypt private-key entries during the conversion.
password is an input password for recovering the Java keystore entries. It is not automatically the password that will protect a later serialized PFX; use the destination Pfx export method to choose the PFX password.Returns Ok(()) for success, Err(chilkat::Error) for failure.
TrustedCertAt
Loads cert with the trusted certificate at the zero-based index index. Valid indexes range from 0 through NumTrustedCerts - 1. The returned certificate is the single certificate stored in the trust entry and has no private key merely by virtue of being trusted.
Returns Ok(()) for success, Err(chilkat::Error) for failure.
TrustedCertOf
Searches the trusted-certificate entries for an alias equal to alias_name and loads the matching certificate into cert. case_sensitive controls whether the alias comparison is case-sensitive.
Returns Ok(()) for success, Err(chilkat::Error) for failure.
UseCertVault
Adds vault to the certificate sources Chilkat searches when it needs issuer certificates to build a private-key certificate chain. This is useful before calling AddPrivateKey or AddPfx when the supplied certificate material does not already contain the complete chain.
Returns Ok(()) for success, Err(chilkat::Error) for failure.