summaryrefslogtreecommitdiff
path: root/keystore/java
diff options
context:
space:
mode:
author Seth Moore <sethmo@google.com> 2024-10-29 17:05:32 +0000
committer Seth Moore <sethmo@google.com> 2024-10-29 17:05:32 +0000
commit142c2296a4ae39fafbefe368b77e4f30d3230249 (patch)
tree5c8f1d9ed96ebb944392b79f8e02b5b2935e727a /keystore/java
parent6be50758201a7006fd72141f353604b298986764 (diff)
Fix typo in javadoc
This typo shows up on the public-facing API docs Change-Id: I9ac633a78359ddb9bb15770728ac338983f18456
Diffstat (limited to 'keystore/java')
-rw-r--r--keystore/java/android/security/keystore/KeyProperties.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/keystore/java/android/security/keystore/KeyProperties.java b/keystore/java/android/security/keystore/KeyProperties.java
index 7f936f28ac4f..344d19af9173 100644
--- a/keystore/java/android/security/keystore/KeyProperties.java
+++ b/keystore/java/android/security/keystore/KeyProperties.java
@@ -23,9 +23,6 @@ import android.annotation.StringDef;
import android.annotation.SystemApi;
import android.os.Process;
import android.security.keymaster.KeymasterDefs;
-
-import libcore.util.EmptyArray;
-
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.security.spec.AlgorithmParameterSpec;
@@ -33,6 +30,7 @@ import java.security.spec.ECParameterSpec;
import java.security.spec.MGF1ParameterSpec;
import java.util.Collection;
import java.util.Locale;
+import libcore.util.EmptyArray;
/**
* Properties of <a href="{@docRoot}training/articles/keystore.html">Android Keystore</a> keys.
@@ -116,7 +114,7 @@ public abstract class KeyProperties {
public static final int PURPOSE_AGREE_KEY = 1 << 6;
/**
- * Purpose of key: Signing attestaions. This purpose is incompatible with all others, meaning
+ * Purpose of key: Signing attestations. This purpose is incompatible with all others, meaning
* that when generating a key with PURPOSE_ATTEST_KEY, no other purposes may be specified. In
* addition, PURPOSE_ATTEST_KEY may not be specified for imported keys.
*/