summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorShawn Willden <swillden@google.com>2015-04-28 00:05:03 -0600
committerShawn Willden <swillden@google.com>2015-04-29 23:13:20 -0600
commitdbc00eb0aacfa7d93673798f0226260be2f3d194 (patch)
treef421857aceab57fd9e7c0d2c071af929860ddd99 /core
parentc3563bf7e07ba7f307d681aefacf2850f9e6d557 (diff)
downloadframeworks_base-dbc00eb0aacfa7d93673798f0226260be2f3d194.zip
frameworks_base-dbc00eb0aacfa7d93673798f0226260be2f3d194.tar.gz
frameworks_base-dbc00eb0aacfa7d93673798f0226260be2f3d194.tar.bz2
Add missing error codes from keymaster_defs.h.
Bug: 20127433 Change-Id: I32eab62459003c526d3cf9ef108be7b2fd709960
Diffstat (limited to 'core')
-rw-r--r--core/java/android/security/keymaster/KeymasterDefs.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/java/android/security/keymaster/KeymasterDefs.java b/core/java/android/security/keymaster/KeymasterDefs.java
index 40baf9c..d8834fe 100644
--- a/core/java/android/security/keymaster/KeymasterDefs.java
+++ b/core/java/android/security/keymaster/KeymasterDefs.java
@@ -194,6 +194,9 @@ public final class KeymasterDefs {
public static final int KM_ERROR_UNSUPPORTED_EC_FIELD = -50;
public static final int KM_ERROR_MISSING_NONCE = -51;
public static final int KM_ERROR_INVALID_NONCE = -52;
+ public static final int KM_ERROR_UNSUPPORTED_CHUNK_LENGTH = -53;
+ public static final int KM_ERROR_RESCOPABLE_KEY_NOT_USABLE = -54;
+ public static final int KM_ERROR_CALLER_NONCE_PROHIBITED = -55;
public static final int KM_ERROR_UNIMPLEMENTED = -100;
public static final int KM_ERROR_VERSION_MISMATCH = -101;
public static final int KM_ERROR_UNKNOWN_ERROR = -1000;