summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJanis Danisevskis <jdanis@google.com>2021-03-23 19:35:21 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-03-23 19:35:21 +0000
commit0cc20d00ed83b6e4d5ad318476ea30bedda5ffdf (patch)
treeff2b4760c45ac54bed68fa877b0d0266991f3fb8
parentcbf105a553ed4a2cfdafdcd7a3bbb240bdd341ca (diff)
parent80d42e6bf5e6ed01dbe4b843c892e57469abae3c (diff)
downloadplatform_packages_apps_KeyChain-0cc20d00ed83b6e4d5ad318476ea30bedda5ffdf.tar.gz
platform_packages_apps_KeyChain-0cc20d00ed83b6e4d5ad318476ea30bedda5ffdf.tar.bz2
platform_packages_apps_KeyChain-0cc20d00ed83b6e4d5ad318476ea30bedda5ffdf.zip
Merge "Fix typo in KeyChainService."
-rw-r--r--src/com/android/keychain/KeyChainService.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/com/android/keychain/KeyChainService.java b/src/com/android/keychain/KeyChainService.java
index b9e2189..886a55f 100644
--- a/src/com/android/keychain/KeyChainService.java
+++ b/src/com/android/keychain/KeyChainService.java
@@ -472,11 +472,11 @@ public class KeyChainService extends IntentService {
* @param userCertificateChain The rest of the chain for the client certificate
* @param alias The alias under which the key pair is installed. It is invalid to pass
* {@code KeyChain.KEY_ALIAS_SELECTION_DENIED}.
- * @param uid Can be only one of two values: Either {@code KeyChain.UID_SELF} to indicate
- * installation into the current user's system Keystore instance, or
- * {@code Process.WIFI_UID} to indicate installation into the main user's
- * WiFi Keystore instance. It is only valid to pass {@code Process.WIFI_UID} to
- * the KeyChain service on user 0.
+ * @param uid Can be only one of two values: Either
+ * {@code android.security.KeyStore.UID_SELF} to indicate installation into the
+ * current user's system Keystore instance, or {@code Process.WIFI_UID} to
+ * indicate installation into the main user's WiFi Keystore instance. It is only
+ * valid to pass {@code Process.WIFI_UID} to the KeyChain service on user 0.
* @return Whether the operation succeeded or not.
*/
@Override public boolean installKeyPair(@Nullable byte[] privateKey,