Fix mirodroid payload component name
This (as per spec) should be "Microdroid payload". Incorrect name was
resulting in missing constraints in the sealing policy.
Test: MicrodroidHostTests#DowngradedPackageIsRejectedProtectedVm
Bug: 347235334
Change-Id: Idfc426ca94ee5ac69c57f20f7d7590b7c07cda2a
diff --git a/microdroid_manager/src/vm_secret.rs b/microdroid_manager/src/vm_secret.rs
index b23acf7..c16a45e 100644
--- a/microdroid_manager/src/vm_secret.rs
+++ b/microdroid_manager/src/vm_secret.rs
@@ -46,7 +46,7 @@
const SUBCOMPONENT_SECURITY_VERSION: i64 = 2;
const SUBCOMPONENT_AUTHORITY_HASH: i64 = 4;
// See dice_for_avf_guest.cddl for the `component_name` used by different boot stages in guest VM.
-const MICRODROID_PAYLOAD_COMPONENT_NAME: &str = "Microdroid Payload";
+const MICRODROID_PAYLOAD_COMPONENT_NAME: &str = "Microdroid payload";
const GUEST_OS_COMPONENT_NAME: &str = "vm_entry";
const INSTANCE_HASH_KEY: i64 = -71003;