summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn Willden <swillden@google.com>2015-11-23 08:56:33 -0700
committerShawn Willden <swillden@google.com>2015-11-23 08:56:49 -0700
commit0ba9f6e4eb086ad71f8dcd8684c021f95838be0b (patch)
treedf94d7830f630471f9229727e8cbc90fa6d535aa
parent296727f895b37f5647618bd1b486de6faa5ed423 (diff)
downloadsecurity-0ba9f6e4eb086ad71f8dcd8684c021f95838be0b.tar.gz
ECIES: adding ECIES-KEM
Change-Id: I9f4dd30786f5de170c2e12c1cff52b9ecbb26a2c
-rw-r--r--keystore/keystore_cli_v2.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/keystore/keystore_cli_v2.cpp b/keystore/keystore_cli_v2.cpp
index 3f5feb77..526dc57b 100644
--- a/keystore/keystore_cli_v2.cpp
+++ b/keystore/keystore_cli_v2.cpp
@@ -126,6 +126,12 @@ const char* StringifyTag(keymaster_tag_t tag) {
return "KM_TAG_AUTH_TOKEN";
case KM_TAG_MAC_LENGTH:
return "KM_TAG_MAC_LENGTH";
+ case KM_TAG_KDF:
+ return "KM_TAG_KDF";
+ case KM_TAG_EC_CURVE:
+ return "KM_TAG_EC_CURVE";
+ case KM_TAG_ECIES_SINGLE_HASH_MODE:
+ return "KM_TAG_ECIES_SINGLE_HASH_MODE";
}
return "<Unknown>";
}