Added in API level 23

Builder

class Builder
kotlin.Any
   ↳ android.security.keystore.KeyGenParameterSpec.Builder

Builder of KeyGenParameterSpec instances.

Summary

Public constructors
Builder(keystoreAlias: String, purposes: Int)

Creates a new instance of the Builder.

Public methods
KeyGenParameterSpec

Builds an instance of KeyGenParameterSpec.

KeyGenParameterSpec.Builder!

Sets the algorithm-specific key generation parameters.

KeyGenParameterSpec.Builder
setAttestKeyAlias(attestKeyAlias: String?)

Sets the alias of the attestation key that will be used to sign the attestation certificate for the generated key pair, if an attestation challenge is set with setAttestationChallenge.

KeyGenParameterSpec.Builder
setAttestationChallenge(attestationChallenge: ByteArray!)

Sets whether an attestation certificate will be generated for this key pair, and what challenge value will be placed in the certificate.

KeyGenParameterSpec.Builder
setBlockModes(vararg blockModes: String!)

Sets the set of block modes (e.g.,

KeyGenParameterSpec.Builder

Sets the end of the validity period for the certificate of the generated key pair.

KeyGenParameterSpec.Builder

Sets the start of the validity period for the certificate of the generated key pair.

KeyGenParameterSpec.Builder

Sets the serial number used for the certificate of the generated key pair.

KeyGenParameterSpec.Builder

Sets the subject used for the certificate of the generated key pair.

KeyGenParameterSpec.Builder
setDevicePropertiesAttestationIncluded(devicePropertiesAttestationIncluded: Boolean)

Sets whether to include the base device properties in the attestation certificate.

KeyGenParameterSpec.Builder
setDigests(vararg digests: String!)

Sets the set of digests algorithms (e.g.,

KeyGenParameterSpec.Builder
setEncryptionPaddings(vararg paddings: String!)

Sets the set of padding schemes (e.g.,

KeyGenParameterSpec.Builder

Sets whether this key should be invalidated on biometric enrollment.

KeyGenParameterSpec.Builder
setIsStrongBoxBacked(isStrongBoxBacked: Boolean)

Sets whether this key should be protected by a StrongBox security chip.

KeyGenParameterSpec.Builder
setKeySize(keySize: Int)

Sets the size (in bits) of the key to be generated.

KeyGenParameterSpec.Builder

Sets the time instant after which the key is no longer valid.

KeyGenParameterSpec.Builder

Sets the time instant after which the key is no longer valid for decryption and verification.

KeyGenParameterSpec.Builder

Sets the time instant after which the key is no longer valid for encryption and signing.

KeyGenParameterSpec.Builder

Sets the time instant before which the key is not yet valid.

KeyGenParameterSpec.Builder
setMaxUsageCount(maxUsageCount: Int)

Sets the maximum number of times the key is allowed to be used.

KeyGenParameterSpec.Builder

Sets whether encryption using this key must be sufficiently randomized to produce different ciphertexts for the same plaintext every time.

KeyGenParameterSpec.Builder
setSignaturePaddings(vararg paddings: String!)

Sets the set of padding schemes (e.g.,

KeyGenParameterSpec.Builder
setUnlockedDeviceRequired(unlockedDeviceRequired: Boolean)

Sets whether the keystore requires the screen to be unlocked before allowing decryption using this key.

KeyGenParameterSpec.Builder

Sets the duration of time (seconds) and authorization type for which this key is authorized to be used after the user is successfully authenticated.

KeyGenParameterSpec.Builder

Sets whether this key is authorized to be used only if the user has been authenticated.

KeyGenParameterSpec.Builder

Sets whether the key will remain authorized only until the device is removed from the user's body up to the limit of the authentication validity period (see setUserAuthenticationValidityDurationSeconds and setUserAuthenticationRequired).

KeyGenParameterSpec.Builder

Sets the duration of time (seconds) for which this key is authorized to be used after the user is successfully authenticated.

KeyGenParameterSpec.Builder

Sets whether this key is authorized to be used only for messages confirmed by the user.

KeyGenParameterSpec.Builder

Sets whether a test of user presence is required to be performed between the Signature.initSign() and Signature.sign() method calls.

Public constructors

Builder

Added in API level 23
Builder(
    keystoreAlias: String,
    purposes: Int)

Creates a new instance of the Builder.

Parameters
keystoreAlias String: alias of the entry in which the generated key will appear in Android KeyStore. Must not be empty. This value cannot be null.
purposes Int: set of purposes (e.g., encrypt, decrypt, sign) for which the key can be used. Attempts to use the key for any other purpose will be rejected.

See KeyProperties.PURPOSE flags. Value is either 0 or a combination of android.security.keystore.KeyProperties#PURPOSE_ENCRYPT, android.security.keystore.KeyProperties#PURPOSE_DECRYPT, android.security.keystore.KeyProperties#PURPOSE_SIGN, android.security.keystore.KeyProperties#PURPOSE_VERIFY, android.security.keystore.KeyProperties#PURPOSE_WRAP_KEY, android.security.keystore.KeyProperties#PURPOSE_AGREE_KEY, and android.security.keystore.KeyProperties#PURPOSE_ATTEST_KEY

Public methods

build

Added in API level 23
fun build(): KeyGenParameterSpec

Builds an instance of KeyGenParameterSpec.

Return
KeyGenParameterSpec This value cannot be null.

setAlgorithmParameterSpec

Added in API level 23
fun setAlgorithmParameterSpec(spec: AlgorithmParameterSpec): KeyGenParameterSpec.Builder!

Sets the algorithm-specific key generation parameters. For example, for RSA keys this may be an instance of java.security.spec.RSAKeyGenParameterSpec whereas for EC keys this may be an instance of java.security.spec.ECGenParameterSpec.

These key generation parameters must match other explicitly set parameters (if any), such as key size.

Parameters
spec AlgorithmParameterSpec: This value cannot be null.

setAttestKeyAlias

Added in API level 31
fun setAttestKeyAlias(attestKeyAlias: String?): KeyGenParameterSpec.Builder

Sets the alias of the attestation key that will be used to sign the attestation certificate for the generated key pair, if an attestation challenge is set with setAttestationChallenge. If an attestKeyAlias is set but no challenge, java.security.KeyPairGenerator#initialize will throw .

If the attestKeyAlias is set to null (the default), Android Keystore will select an appropriate system-provided attestation signing key. If not null, the alias must reference an Android Keystore Key that was created with android.security.keystore.KeyProperties#PURPOSE_ATTEST_KEY, or key generation will throw java.security.InvalidAlgorithmParameterException.

Parameters
attestKeyAlias String?: the alias of the attestation key to be used to sign the attestation certificate. This value may be null.

setAttestationChallenge

Added in API level 24
fun setAttestationChallenge(attestationChallenge: ByteArray!): KeyGenParameterSpec.Builder

Sets whether an attestation certificate will be generated for this key pair, and what challenge value will be placed in the certificate. The attestation certificate chain can be retrieved with with java.security.KeyStore#getCertificateChain(String).

If attestationChallenge is not null, the public key certificate for this key pair will contain an extension that describes the details of the key's configuration and authorizations, including the attestationChallenge value. If the key is in secure hardware, and if the secure hardware supports attestation, the certificate will be signed by a chain of certificates rooted at a trustworthy CA key. Otherwise the chain will be rooted at an untrusted certificate.

The purpose of the challenge value is to enable relying parties to verify that the key was created in response to a specific request. If attestation is desired but no challenged is needed, any non-null value may be used, including an empty byte array.

If attestationChallenge is null, and this spec is used to generate an asymmetric (RSA or EC) key pair, the public key certificate will be self-signed if the key has purpose android.security.keystore.KeyProperties#PURPOSE_SIGN. If the key does not have purpose android.security.keystore.KeyProperties#PURPOSE_SIGN, it is not possible to use the key to sign a certificate, so the public key certificate will contain a placeholder signature.

Symmetric keys, such as AES and HMAC keys, do not have public key certificates. If a getAttestationChallenge() returns non-null and the spec is used to generate a symmetric (AES or HMAC) key, javax.crypto.KeyGenerator#generateKey() will throw java.security.InvalidAlgorithmParameterException.

The challenge may be up to 128 bytes.

setBlockModes

Added in API level 23
fun setBlockModes(vararg blockModes: String!): KeyGenParameterSpec.Builder

Sets the set of block modes (e.g., GCM, CBC) with which the key can be used when encrypting/decrypting. Attempts to use the key with any other block modes will be rejected.

This must be specified for symmetric encryption/decryption keys.

See KeyProperties.BLOCK_MODE constants.

Parameters
blockModes String!: Value is android.security.keystore.KeyProperties#BLOCK_MODE_ECB, android.security.keystore.KeyProperties#BLOCK_MODE_CBC, android.security.keystore.KeyProperties#BLOCK_MODE_CTR, or android.security.keystore.KeyProperties#BLOCK_MODE_GCM
Return
KeyGenParameterSpec.Builder This value cannot be null.

setCertificateNotAfter

Added in API level 23
fun setCertificateNotAfter(date: Date): KeyGenParameterSpec.Builder

Sets the end of the validity period for the certificate of the generated key pair.

By default, this date is Jan 1 2048.

Parameters
date Date: This value cannot be null.
Return
KeyGenParameterSpec.Builder This value cannot be null.

setCertificateNotBefore

Added in API level 23
fun setCertificateNotBefore(date: Date): KeyGenParameterSpec.Builder

Sets the start of the validity period for the certificate of the generated key pair.

By default, this date is Jan 1 1970.

Parameters
date Date: This value cannot be null.
Return
KeyGenParameterSpec.Builder This value cannot be null.

setCertificateSerialNumber

Added in API level 23
fun setCertificateSerialNumber(serialNumber: BigInteger): KeyGenParameterSpec.Builder

Sets the serial number used for the certificate of the generated key pair.

By default, the serial number is 1.

Parameters
serialNumber BigInteger: This value cannot be null.
Return
KeyGenParameterSpec.Builder This value cannot be null.

setCertificateSubject

Added in API level 23
fun setCertificateSubject(subject: X500Principal): KeyGenParameterSpec.Builder

Sets the subject used for the certificate of the generated key pair.

By default, the subject is CN=fake.

Parameters
subject X500Principal: This value cannot be null.
Return
KeyGenParameterSpec.Builder This value cannot be null.

setDevicePropertiesAttestationIncluded

Added in API level 31
fun setDevicePropertiesAttestationIncluded(devicePropertiesAttestationIncluded: Boolean): KeyGenParameterSpec.Builder

Sets whether to include the base device properties in the attestation certificate.

If attestationChallenge is not null, the public key certificate for this key pair will contain an extension that describes the details of the key's configuration and authorizations, including the device properties values (brand, device, manufacturer, model, product). These should be the same as in (Build#BRAND, Build#DEVICE, Build#MANUFACTURER, Build#MODEL, Build#PRODUCT). The attestation certificate chain can be retrieved with java.security.KeyStore#getCertificateChain(String).

If attestationChallenge is null, the public key certificate for this key pair will not contain the extension with the requested attested values.

javax.crypto.KeyGenerator#generateKey() will throw java.security.ProviderException if device properties attestation fails or is not supported.

setDigests

Added in API level 23
fun setDigests(vararg digests: String!): KeyGenParameterSpec.Builder

Sets the set of digests algorithms (e.g., SHA-256, SHA-384) with which the key can be used. Attempts to use the key with any other digest algorithm will be rejected.

This must be specified for signing/verification keys and RSA encryption/decryption keys used with RSA OAEP padding scheme because these operations involve a digest. For HMAC keys, the default is the digest associated with the key algorithm (e.g., SHA-256 for key algorithm HmacSHA256). HMAC keys cannot be authorized for more than one digest.

For private keys used for TLS/SSL client or server authentication it is usually necessary to authorize the use of no digest (KeyProperties#DIGEST_NONE). This is because TLS/SSL stacks typically generate the necessary digest(s) themselves and then use a private key to sign it.

See KeyProperties.DIGEST constants.

Parameters
digests String!: Value is android.security.keystore.KeyProperties#DIGEST_NONE, android.security.keystore.KeyProperties#DIGEST_MD5, android.security.keystore.KeyProperties#DIGEST_SHA1, android.security.keystore.KeyProperties#DIGEST_SHA224, android.security.keystore.KeyProperties#DIGEST_SHA256, android.security.keystore.KeyProperties#DIGEST_SHA384, or android.security.keystore.KeyProperties#DIGEST_SHA512
Return
KeyGenParameterSpec.Builder This value cannot be null.

setEncryptionPaddings

Added in API level 23
fun setEncryptionPaddings(vararg paddings: String!): KeyGenParameterSpec.Builder

Sets the set of padding schemes (e.g., PKCS7Padding, OAEPPadding, PKCS1Padding, NoPadding) with which the key can be used when encrypting/decrypting. Attempts to use the key with any other padding scheme will be rejected.

This must be specified for keys which are used for encryption/decryption.

For RSA private keys used by TLS/SSL servers to authenticate themselves to clients it is usually necessary to authorize the use of no/any padding (KeyProperties#ENCRYPTION_PADDING_NONE) and/or PKCS#1 encryption padding (KeyProperties#ENCRYPTION_PADDING_RSA_PKCS1). This is because RSA decryption is required by some cipher suites, and some stacks request decryption using no padding whereas others request PKCS#1 padding.

See KeyProperties.ENCRYPTION_PADDING constants.

Parameters
paddings String!: Value is android.security.keystore.KeyProperties#ENCRYPTION_PADDING_NONE, android.security.keystore.KeyProperties#ENCRYPTION_PADDING_PKCS7, android.security.keystore.KeyProperties#ENCRYPTION_PADDING_RSA_PKCS1, or android.security.keystore.KeyProperties#ENCRYPTION_PADDING_RSA_OAEP
Return
KeyGenParameterSpec.Builder This value cannot be null.

setInvalidatedByBiometricEnrollment

Added in API level 24
fun setInvalidatedByBiometricEnrollment(invalidateKey: Boolean): KeyGenParameterSpec.Builder

Sets whether this key should be invalidated on biometric enrollment. This applies only to keys which require user authentication (see setUserAuthenticationRequired(boolean)) and if no positive validity duration has been set (see setUserAuthenticationValidityDurationSeconds(int), meaning the key is valid for biometric authentication only.

By default, invalidateKey is true, so keys that are valid for biometric authentication only are irreversibly invalidated when a new biometric is enrolled, or when all existing biometrics are deleted. That may be changed by calling this method with invalidateKey set to false.

Invalidating keys on enrollment of a new biometric or unenrollment of all biometrics improves security by ensuring that an unauthorized person who obtains the password can't gain the use of biometric-authenticated keys by enrolling their own biometric. However, invalidating keys makes key-dependent operations impossible, requiring some fallback procedure to authenticate the user and set up a new key.

Return
KeyGenParameterSpec.Builder This value cannot be null.

setIsStrongBoxBacked

Added in API level 28
fun setIsStrongBoxBacked(isStrongBoxBacked: Boolean): KeyGenParameterSpec.Builder

Sets whether this key should be protected by a StrongBox security chip.

Return
KeyGenParameterSpec.Builder This value cannot be null.

setKeySize

Added in API level 23
fun setKeySize(keySize: Int): KeyGenParameterSpec.Builder

Sets the size (in bits) of the key to be generated. For instance, for RSA keys this sets the modulus size, for EC keys this selects a curve with a matching field size, and for symmetric keys this sets the size of the bitstring which is their key material.

The default key size is specific to each key algorithm. If key size is not set via this method, it should be looked up from the algorithm-specific parameters (if any) provided via setAlgorithmParameterSpec.

Return
KeyGenParameterSpec.Builder This value cannot be null.

setKeyValidityEnd

Added in API level 23
fun setKeyValidityEnd(endDate: Date!): KeyGenParameterSpec.Builder

Sets the time instant after which the key is no longer valid.

By default, the key is valid at any instant.

Return
KeyGenParameterSpec.Builder This value cannot be null.

setKeyValidityForConsumptionEnd

Added in API level 23
fun setKeyValidityForConsumptionEnd(endDate: Date!): KeyGenParameterSpec.Builder

Sets the time instant after which the key is no longer valid for decryption and verification.

By default, the key is valid at any instant.

Return
KeyGenParameterSpec.Builder This value cannot be null.

setKeyValidityForOriginationEnd

Added in API level 23
fun setKeyValidityForOriginationEnd(endDate: Date!): KeyGenParameterSpec.Builder

Sets the time instant after which the key is no longer valid for encryption and signing.

By default, the key is valid at any instant.

Return
KeyGenParameterSpec.Builder This value cannot be null.

setKeyValidityStart

Added in API level 23
fun setKeyValidityStart(startDate: Date!): KeyGenParameterSpec.Builder

Sets the time instant before which the key is not yet valid.

By default, the key is valid at any instant.

Return
KeyGenParameterSpec.Builder This value cannot be null.

setMaxUsageCount

Added in API level 31
fun setMaxUsageCount(maxUsageCount: Int): KeyGenParameterSpec.Builder

Sets the maximum number of times the key is allowed to be used. After every use of the key, the use counter will decrease. This authorization applies only to secret key and private key operations. Public key operations are not restricted. For example, after successfully encrypting and decrypting data using methods such as Cipher#doFinal(), the use counter of the secret key will decrease. After successfully signing data using methods such as Signature#sign(), the use counter of the private key will decrease. When the use counter is depleted, the key will be marked for deletion by Android Keystore and any subsequent attempt to use the key will throw KeyPermanentlyInvalidatedException. There is no key to be loaded from the Android Keystore once the exhausted key is permanently deleted, as if the key never existed before.

By default, there is no restriction on the usage of key.

Some secure hardware may not support this feature at all, in which case it will be enforced in software, some secure hardware may support it but only with maxUsageCount = 1, and some secure hardware may support it with larger value of maxUsageCount.

The PackageManger feature flags: android.content.pm.PackageManager#FEATURE_KEYSTORE_SINGLE_USE_KEY and android.content.pm.PackageManager#FEATURE_KEYSTORE_LIMITED_USE_KEY can be used to check whether the secure hardware cannot enforce this feature, can only enforce it with maxUsageCount = 1, or can enforce it with larger value of maxUsageCount.

Parameters
maxUsageCount Int: maximum number of times the key is allowed to be used or KeyProperties#UNRESTRICTED_USAGE_COUNT if there is no restriction on the usage.
Return
KeyGenParameterSpec.Builder This value cannot be null.

setRandomizedEncryptionRequired

Added in API level 23
fun setRandomizedEncryptionRequired(required: Boolean): KeyGenParameterSpec.Builder

Sets whether encryption using this key must be sufficiently randomized to produce different ciphertexts for the same plaintext every time. The formal cryptographic property being required is indistinguishability under chosen-plaintext attack (IND-CPA). This property is important because it mitigates several classes of weaknesses due to which ciphertext may leak information about plaintext. For example, if a given plaintext always produces the same ciphertext, an attacker may see the repeated ciphertexts and be able to deduce something about the plaintext.

By default, IND-CPA is required.

When IND-CPA is required:

  • encryption/decryption transformation which do not offer IND-CPA, such as ECB with a symmetric encryption algorithm, or RSA encryption/decryption without padding, are prohibited;
  • in block modes which use an IV, such as GCM, CBC, and CTR, caller-provided IVs are rejected when encrypting, to ensure that only random IVs are used.

Before disabling this requirement, consider the following approaches instead:

  • If you are generating a random IV for encryption and then initializing a Cipher using the IV, the solution is to let the Cipher generate a random IV instead. This will occur if the Cipher is initialized for encryption without an IV. The IV can then be queried via Cipher#getIV().
  • If you are generating a non-random IV (e.g., an IV derived from something not fully random, such as the name of the file being encrypted, or transaction ID, or password, or a device identifier), consider changing your design to use a random IV which will then be provided in addition to the ciphertext to the entities which need to decrypt the ciphertext.
  • If you are using RSA encryption without padding, consider switching to encryption padding schemes which offer IND-CPA, such as PKCS#1 or OAEP.
Return
KeyGenParameterSpec.Builder This value cannot be null.

setSignaturePaddings

Added in API level 23
fun setSignaturePaddings(vararg paddings: String!): KeyGenParameterSpec.Builder

Sets the set of padding schemes (e.g., PSS, PKCS#1) with which the key can be used when signing/verifying. Attempts to use the key with any other padding scheme will be rejected.

This must be specified for RSA keys which are used for signing/verification.

See KeyProperties.SIGNATURE_PADDING constants.

Parameters
paddings String!: Value is android.security.keystore.KeyProperties#SIGNATURE_PADDING_RSA_PKCS1, or android.security.keystore.KeyProperties#SIGNATURE_PADDING_RSA_PSS
Return
KeyGenParameterSpec.Builder This value cannot be null.

setUnlockedDeviceRequired

Added in API level 28
fun setUnlockedDeviceRequired(unlockedDeviceRequired: Boolean): KeyGenParameterSpec.Builder

Sets whether the keystore requires the screen to be unlocked before allowing decryption using this key. If this is set to true, any attempt to decrypt or sign using this key while the screen is locked will fail. A locked device requires a PIN, password, biometric, or other trusted factor to access. While the screen is locked, any associated public key can still be used (e.g for signature verification).

Return
KeyGenParameterSpec.Builder This value cannot be null.

setUserAuthenticationParameters

Added in API level 30
fun setUserAuthenticationParameters(
    timeout: Int,
    type: Int
): KeyGenParameterSpec.Builder

Sets the duration of time (seconds) and authorization type for which this key is authorized to be used after the user is successfully authenticated. This has effect if the key requires user authentication for its use (see setUserAuthenticationRequired(boolean)).

By default, if user authentication is required, it must take place for every use of the key.

These cryptographic operations will throw UserNotAuthenticatedException during initialization if the user needs to be authenticated to proceed. This situation can be resolved by the user authenticating with the appropriate biometric or credential as required by the key. See BiometricPrompt.Builder#setAllowedAuthenticators(int) and BiometricManager.Authenticators.

Once resolved, initializing a new cryptographic operation using this key (or any other key which is authorized to be used for a fixed duration of time after user authentication) should succeed provided the user authentication flow completed successfully.

Parameters
timeout Int: duration in seconds or 0 if user authentication must take place for every use of the key. Value is 0 or greater
type Int: set of authentication types which can authorize use of the key. See KeyProperties.AUTH flags. Value is either 0 or a combination of android.security.keystore.KeyProperties#AUTH_BIOMETRIC_STRONG, and android.security.keystore.KeyProperties#AUTH_DEVICE_CREDENTIAL
Return
KeyGenParameterSpec.Builder This value cannot be null.

setUserAuthenticationRequired

Added in API level 23
fun setUserAuthenticationRequired(required: Boolean): KeyGenParameterSpec.Builder

Sets whether this key is authorized to be used only if the user has been authenticated.

By default, the key is authorized to be used regardless of whether the user has been authenticated.

When user authentication is required:

  • The key can only be generated if secure lock screen is set up (see KeyguardManager#isDeviceSecure()). Additionally, if the key requires that user authentication takes place for every use of the key (see setUserAuthenticationValidityDurationSeconds(int)), at least one biometric must be enrolled (see BiometricManager#canAuthenticate()).
  • The use of the key must be authorized by the user by authenticating to this Android device using a subset of their secure lock screen credentials such as password/PIN/pattern or biometric. More information.
  • The key will become irreversibly invalidated once the secure lock screen is disabled (reconfigured to None, Swipe or other mode which does not authenticate the user) or when the secure lock screen is forcibly reset (e.g., by a Device Administrator). Additionally, if the key requires that user authentication takes place for every use of the key, it is also irreversibly invalidated once a new biometric is enrolled or once\ no more biometrics are enrolled, unless setInvalidatedByBiometricEnrollment(boolean) is used to allow validity after enrollment, or KeyProperties.AUTH_DEVICE_CREDENTIAL is specified as part of the parameters to setUserAuthenticationParameters. Attempts to initialize cryptographic operations using such keys will throw KeyPermanentlyInvalidatedException.

This authorization applies only to secret key and private key operations. Public key operations are not restricted.

Return
KeyGenParameterSpec.Builder This value cannot be null.

setUserAuthenticationValidWhileOnBody

Added in API level 24
fun setUserAuthenticationValidWhileOnBody(remainsValid: Boolean): KeyGenParameterSpec.Builder

Sets whether the key will remain authorized only until the device is removed from the user's body up to the limit of the authentication validity period (see setUserAuthenticationValidityDurationSeconds and setUserAuthenticationRequired). Once the device has been removed from the user's body, the key will be considered unauthorized and the user will need to re-authenticate to use it. For keys without an authentication validity period this parameter has no effect.

Similarly, on devices that do not have an on-body sensor, this parameter will have no effect; the device will always be considered to be "on-body" and the key will therefore remain authorized until the validity period ends.

Parameters
remainsValid Boolean: if true, and if the device supports on-body detection, key will be invalidated when the device is removed from the user's body or when the authentication validity expires, whichever occurs first.
Return
KeyGenParameterSpec.Builder This value cannot be null.

setUserAuthenticationValidityDurationSeconds

Added in API level 23
Deprecated in API level 30
fun setUserAuthenticationValidityDurationSeconds(seconds: Int): KeyGenParameterSpec.Builder

Deprecated: See setUserAuthenticationParameters(int,int)

Sets the duration of time (seconds) for which this key is authorized to be used after the user is successfully authenticated. This has effect if the key requires user authentication for its use (see setUserAuthenticationRequired(boolean)).

By default, if user authentication is required, it must take place for every use of the key.

Cryptographic operations involving keys which require user authentication to take place for every operation can only use biometric authentication. This is achieved by initializing a cryptographic operation (Signature, Cipher, Mac) with the key, wrapping it into a BiometricPrompt.CryptoObject, invoking BiometricPrompt.authenticate with CryptoObject, and proceeding with the cryptographic operation only if the authentication flow succeeds.

Cryptographic operations involving keys which are authorized to be used for a duration of time after a successful user authentication event can only use secure lock screen authentication. These cryptographic operations will throw UserNotAuthenticatedException during initialization if the user needs to be authenticated to proceed. This situation can be resolved by the user unlocking the secure lock screen of the Android or by going through the confirm credential flow initiated by KeyguardManager#createConfirmDeviceCredentialIntent(CharSequence, CharSequence). Once resolved, initializing a new cryptographic operation using this key (or any other key which is authorized to be used for a fixed duration of time after user authentication) should succeed provided the user authentication flow completed successfully.

Parameters
seconds Int: duration in seconds or -1 if user authentication must take place for every use of the key. Value is -1 or greater
Return
KeyGenParameterSpec.Builder This value cannot be null.

setUserConfirmationRequired

Added in API level 28
fun setUserConfirmationRequired(required: Boolean): KeyGenParameterSpec.Builder

Sets whether this key is authorized to be used only for messages confirmed by the user. Confirmation is separate from user authentication (see setUserAuthenticationRequired(boolean)). Keys can be created that require confirmation but not user authentication, or user authentication but not confirmation, or both. Confirmation verifies that some user with physical possession of the device has approved a displayed message. User authentication verifies that the correct user is present and has authenticated.

This authorization applies only to secret key and private key operations. Public key operations are not restricted. See android.security.ConfirmationPrompt class for more details about user confirmations.

Return
KeyGenParameterSpec.Builder This value cannot be null.

setUserPresenceRequired

Added in API level 28
fun setUserPresenceRequired(required: Boolean): KeyGenParameterSpec.Builder

Sets whether a test of user presence is required to be performed between the Signature.initSign() and Signature.sign() method calls. It requires that the KeyStore implementation have a direct way to validate the user presence for example a KeyStore hardware backed strongbox can use a button press that is observable in hardware. A test for user presence is tangential to authentication. The test can be part of an authentication step as long as this step can be validated by the hardware protecting the key and cannot be spoofed. For example, a physical button press can be used as a test of user presence if the other pins connected to the button are not able to simulate a button press.There must be no way for the primary processor to fake a button press, or that button must not be used as a test of user presence.

Return
KeyGenParameterSpec.Builder This value cannot be null.