diff --git a/keystore/java/android/security/keystore/KeyGenParameterSpec.java b/keystore/java/android/security/keystore/KeyGenParameterSpec.java index 19ff9c764f6ee..68c9c795a6c7b 100644 --- a/keystore/java/android/security/keystore/KeyGenParameterSpec.java +++ b/keystore/java/android/security/keystore/KeyGenParameterSpec.java @@ -449,9 +449,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { * invalid signature. This is OK if the certificate is only used for obtaining the * public key from Android KeyStore. * - *
NOTE: The {@code purposes} parameter has currently no effect on asymmetric - * key pairs. - * *
See {@link KeyProperties}.{@code PURPOSE} flags. */ public Builder(@NonNull String keystoreAlias, @KeyProperties.PurposeEnum int purposes) { @@ -556,8 +553,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { * *
By default, the key is valid at any instant. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see #setKeyValidityEnd(Date) */ @NonNull @@ -571,8 +566,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { * *
By default, the key is valid at any instant. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see #setKeyValidityStart(Date) * @see #setKeyValidityForConsumptionEnd(Date) * @see #setKeyValidityForOriginationEnd(Date) @@ -589,8 +582,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { * *
By default, the key is valid at any instant. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see #setKeyValidityForConsumptionEnd(Date) */ @NonNull @@ -605,8 +596,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { * *
By default, the key is valid at any instant. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see #setKeyValidityForOriginationEnd(Date) */ @NonNull @@ -624,8 +613,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { * keys, the set of digests defaults to the digest associated with the key algorithm (e.g., * {@code SHA-256} for key algorithm {@code HmacSHA256} * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see KeyProperties.Digest */ @NonNull @@ -642,8 +629,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { * *
This must be specified for keys which are used for encryption/decryption. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * *
See {@link KeyProperties}.{@code ENCRYPTION_PADDING} constants. */ @NonNull @@ -660,8 +645,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { * *
This must be specified for RSA keys which are used for signing/verification. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * *
See {@link KeyProperties}.{@code SIGNATURE_PADDING} constants. */ @NonNull @@ -678,8 +661,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { * *
This must be specified for encryption/decryption keys. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * *
See {@link KeyProperties}.{@code BLOCK_MODE} constants. */ @NonNull @@ -723,8 +704,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { *
NOTE: This has currently no effect on asymmetric key pairs. */ @NonNull public Builder setRandomizedEncryptionRequired(boolean required) { @@ -748,8 +727,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { *
This restriction applies only to private key operations. Public key operations are not * restricted. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see #setUserAuthenticationValidityDurationSeconds(int) */ @NonNull @@ -764,8 +741,6 @@ public final class KeyGenParameterSpec implements AlgorithmParameterSpec { * *
By default, the user needs to authenticate for every use of the key. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @param seconds duration in seconds or {@code -1} if the user needs to authenticate for * every use of the key. * diff --git a/keystore/java/android/security/keystore/KeyProtection.java b/keystore/java/android/security/keystore/KeyProtection.java index f52a193fab6ac..48c0ed0f7c5a1 100644 --- a/keystore/java/android/security/keystore/KeyProtection.java +++ b/keystore/java/android/security/keystore/KeyProtection.java @@ -305,9 +305,6 @@ public final class KeyProtection implements ProtectionParameter { * @param purposes 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. * - *
NOTE: The {@code purposes} parameter has currently no effect on asymmetric - * key pairs. - * *
See {@link KeyProperties}.{@code PURPOSE} flags. */ public Builder(@KeyProperties.PurposeEnum int purposes) { @@ -319,8 +316,6 @@ public final class KeyProtection implements ProtectionParameter { * *
By default, the key is valid at any instant. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see #setKeyValidityEnd(Date) */ @NonNull @@ -334,8 +329,6 @@ public final class KeyProtection implements ProtectionParameter { * *
By default, the key is valid at any instant. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see #setKeyValidityStart(Date) * @see #setKeyValidityForConsumptionEnd(Date) * @see #setKeyValidityForOriginationEnd(Date) @@ -352,8 +345,6 @@ public final class KeyProtection implements ProtectionParameter { * *
By default, the key is valid at any instant. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see #setKeyValidityForConsumptionEnd(Date) */ @NonNull @@ -368,8 +359,6 @@ public final class KeyProtection implements ProtectionParameter { * *
By default, the key is valid at any instant. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see #setKeyValidityForOriginationEnd(Date) */ @NonNull @@ -385,8 +374,6 @@ public final class KeyProtection implements ProtectionParameter { * *
This must be specified for keys which are used for encryption/decryption. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * *
See {@link KeyProperties}.{@code ENCRYPTION_PADDING} constants. */ @NonNull @@ -403,8 +390,6 @@ public final class KeyProtection implements ProtectionParameter { * *
This must be specified for RSA keys which are used for signing/verification. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * *
See {@link KeyProperties}.{@code SIGNATURE_PADDING} constants. */ @NonNull @@ -423,8 +408,6 @@ public final class KeyProtection implements ProtectionParameter { * {@link Key#getAlgorithm()}. For asymmetric signing keys the set of digest algorithms * must be specified. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * *
See {@link KeyProperties}.{@code DIGEST} constants. */ @NonNull @@ -440,8 +423,6 @@ public final class KeyProtection implements ProtectionParameter { * *
This must be specified for encryption/decryption keys. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * *
See {@link KeyProperties}.{@code BLOCK_MODE} constants. */ @NonNull @@ -483,8 +464,6 @@ public final class KeyProtection implements ProtectionParameter { *
NOTE: This has currently no effect on asymmetric key pairs. */ @NonNull public Builder setRandomizedEncryptionRequired(boolean required) { @@ -505,8 +484,6 @@ public final class KeyProtection implements ProtectionParameter { * More * information. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @see #setUserAuthenticationValidityDurationSeconds(int) */ @NonNull @@ -521,8 +498,6 @@ public final class KeyProtection implements ProtectionParameter { * *
By default, the user needs to authenticate for every use of the key. * - *
NOTE: This has currently no effect on asymmetric key pairs. - * * @param seconds duration in seconds or {@code -1} if the user needs to authenticate for * every use of the key. *