From e90774ddbceeebc293dd015094721874a2e1d954 Mon Sep 17 00:00:00 2001 From: Shawn Willden Date: Wed, 18 Mar 2015 18:28:39 -0600 Subject: [PATCH] Rename KM_TAG_USER_AUTH_ID to KM_TAG_USER_AUTH_TYPE. Also change to an ENUM, to match changes in keymaster_defs.h Change-Id: Ieda3402563b0b9e4e8b100eb69a94651e51c6347 --- core/java/android/security/keymaster/KeymasterDefs.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/security/keymaster/KeymasterDefs.java b/core/java/android/security/keymaster/KeymasterDefs.java index 218eac8bdb26e..e653b74cd9fd1 100644 --- a/core/java/android/security/keymaster/KeymasterDefs.java +++ b/core/java/android/security/keymaster/KeymasterDefs.java @@ -69,7 +69,7 @@ public final class KeymasterDefs { public static final int KM_TAG_USER_ID = KM_INT | 501; public static final int KM_TAG_USER_SECURE_ID = KM_LONG_REP | 502; public static final int KM_TAG_NO_AUTH_REQUIRED = KM_BOOL | 503; - public static final int KM_TAG_USER_AUTH_ID = KM_INT_REP | 504; + public static final int KM_TAG_USER_AUTH_TYPE = KM_ENUM | 504; public static final int KM_TAG_AUTH_TIMEOUT = KM_INT | 505; public static final int KM_TAG_ALL_APPLICATIONS = KM_BOOL | 600;