summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn Willden <swillden@google.com>2015-06-18 12:09:20 -0600
committerShawn Willden <swillden@google.com>2015-06-24 21:21:54 -0600
commitb1d948edec245ba8f4d022ed8386b57a9fe40b6d (patch)
tree625ceef0f9a25a921f82f009b15bfc931ac4d604
parentb138a64cba78fad036b0f099668a2623c9ec5c18 (diff)
downloadlibhardware-b1d948edec245ba8f4d022ed8386b57a9fe40b6d.tar.gz
Remove KM_TAG_AEAD_TAG.
Bug: 19919114 Change-Id: I06fdd0f9b8e247587d800031d3367078423baa50
-rw-r--r--include/hardware/keymaster_defs.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/hardware/keymaster_defs.h b/include/hardware/keymaster_defs.h
index 9eb0c0f9..d1dd3262 100644
--- a/include/hardware/keymaster_defs.h
+++ b/include/hardware/keymaster_defs.h
@@ -121,13 +121,10 @@ typedef enum {
/* Tags used only to provide data to or receive data from operations */
KM_TAG_ASSOCIATED_DATA = KM_BYTES | 1000, /* Used to provide associated data for AEAD modes. */
KM_TAG_NONCE = KM_BYTES | 1001, /* Nonce or Initialization Vector */
- KM_TAG_AEAD_TAG = KM_BYTES | 1002, /* AEAD tag data. Returned from finish() during AEAD
- * encryption and provided to begin() during AEAD
- * decryption.*/
- KM_TAG_AUTH_TOKEN = KM_BYTES | 1003, /* Authentication token that proves secure user
+ KM_TAG_AUTH_TOKEN = KM_BYTES | 1002, /* Authentication token that proves secure user
authentication has been performed. Structure
defined in hw_auth_token_t in hw_auth_token.h. */
- KM_TAG_MAC_LENGTH = KM_INT | 1004, /* MAC or AEAD authentication tag length in bits. */
+ KM_TAG_MAC_LENGTH = KM_INT | 1003, /* MAC or AEAD authentication tag length in bits. */
} keymaster_tag_t;
/**