Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
interface JKSAccessor

Interface for advanced domain-specific keystore access. Allows for concurrency via AutoCloseable locking.

Link copied to clipboard

Specifies what the keystore should be backed by.

Link copied to clipboard
Link copied to clipboard

Read handle, requested whenever the provider needs to perform a read operation. This handle should serve as a shared lock on the underlying data to avoid data races.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
typealias SigningProvider = SigningProviderI<*, *, *>
Link copied to clipboard
Link copied to clipboard

Write handle, requested whenever the provider needs to perform a write operation. This handle should serve as an exclusive lock on the underlying data to avoid data races.

Properties

Link copied to clipboard

Whether this key isis inside any secure hardware (TEE or StrognBox).

Link copied to clipboard

Whether this key is actually backed by a StrongBox secure element (precise on API 31+; false on older devices).

Link copied to clipboard

An interface to some underlying persistent storage for private key material. Stored keys are identified by a unique string "alias" for each key. You can createSigningKey, getSignerForKey, or deleteSigningKey.

Link copied to clipboard