Revert "Add AES key generation support."
This reverts commit b949a3fafd73ea77efa579be72e2706cd064071a.
diff --git a/google_keymaster.cpp b/google_keymaster.cpp
index d1280a6..1da78f3 100644
--- a/google_keymaster.cpp
+++ b/google_keymaster.cpp
@@ -51,14 +51,8 @@
};
typedef UniquePtr<ae_ctx, AE_CTX_Delete> Unique_ae_ctx;
-// TODO(swillden): Unify support analysis. Right now, we have per-keytype methods that determine if
-// specific modes, padding, etc. are supported for that key type, and GoogleKeymaster also has
-// methods that return the same information. They'll get out of sync. Best to put the knowledge in
-// the keytypes and provide some mechanism for GoogleKeymaster to query the keytypes for the
-// information.
-
keymaster_algorithm_t supported_algorithms[] = {
- KM_ALGORITHM_RSA, KM_ALGORITHM_DSA, KM_ALGORITHM_ECDSA, KM_ALGORITHM_AES,
+ KM_ALGORITHM_RSA, KM_ALGORITHM_DSA, KM_ALGORITHM_ECDSA,
};
template <typename T>