summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorAlex Klyubin <klyubin@google.com>2015-04-15 17:16:23 -0700
committerAlex Klyubin <klyubin@google.com>2015-04-15 17:18:19 -0700
commit37d81d035c8a51112f40b67db3fa479df58fd120 (patch)
tree508eb131ae61614a5140c6ee64f912898c9c1a5c /core
parent7f72f74766fed73ae9816fec6031a199f70d1428 (diff)
downloadframeworks_base-37d81d035c8a51112f40b67db3fa479df58fd120.zip
frameworks_base-37d81d035c8a51112f40b67db3fa479df58fd120.tar.gz
frameworks_base-37d81d035c8a51112f40b67db3fa479df58fd120.tar.bz2
Add IV-related Keymaster error codes.
Bug: 18088752 Change-Id: I08daede713f945ad7dd0b21cc41ee12c15d94bad
Diffstat (limited to 'core')
-rw-r--r--core/java/android/security/keymaster/KeymasterDefs.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/security/keymaster/KeymasterDefs.java b/core/java/android/security/keymaster/KeymasterDefs.java
index d3953b3..46a04b1 100644
--- a/core/java/android/security/keymaster/KeymasterDefs.java
+++ b/core/java/android/security/keymaster/KeymasterDefs.java
@@ -191,6 +191,8 @@ public final class KeymasterDefs {
public static final int KM_ERROR_SECURE_HW_BUSY = -48;
public static final int KM_ERROR_SECURE_HW_COMMUNICATION_FAILED = -49;
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_UNIMPLEMENTED = -100;
public static final int KM_ERROR_VERSION_MISMATCH = -101;
public static final int KM_ERROR_UNKNOWN_ERROR = -1000;
@@ -230,6 +232,8 @@ public final class KeymasterDefs {
sErrorCodeToString.put(KM_ERROR_INVALID_TAG, "Invalid tag");
sErrorCodeToString.put(KM_ERROR_MEMORY_ALLOCATION_FAILED, "Memory allocation failed");
sErrorCodeToString.put(KM_ERROR_UNSUPPORTED_EC_FIELD, "Unsupported EC field");
+ sErrorCodeToString.put(KM_ERROR_MISSING_NONCE, "Required IV missing");
+ sErrorCodeToString.put(KM_ERROR_INVALID_NONCE, "Invalid IV");
sErrorCodeToString.put(KM_ERROR_UNIMPLEMENTED, "Not implemented");
sErrorCodeToString.put(KM_ERROR_UNKNOWN_ERROR, "Unknown error");
}