Home
last modified time | relevance | path

Searched refs:root_of_trust (Results 1 – 7 of 7) sorted by relevance

/system/keymaster/km_openssl/
Dattestation_record.cpp976 KM_ROOT_OF_TRUST* root_of_trust = nullptr; in build_attestation_record() local
978 key_desc->software_enforced->root_of_trust = KM_ROOT_OF_TRUST_new(); in build_attestation_record()
979 root_of_trust = key_desc->software_enforced->root_of_trust; in build_attestation_record()
981 key_desc->tee_enforced->root_of_trust = KM_ROOT_OF_TRUST_new(); in build_attestation_record()
982 root_of_trust = key_desc->tee_enforced->root_of_trust; in build_attestation_record()
989 !ASN1_OCTET_STRING_set(root_of_trust->verified_boot_key, vb_params->verified_boot_key.data, in build_attestation_record()
994 !ASN1_OCTET_STRING_set(root_of_trust->verified_boot_hash, in build_attestation_record()
1000 root_of_trust->device_locked = vb_params->device_locked ? 0xFF : 0x00; in build_attestation_record()
1001 if (!ASN1_ENUMERATED_set(root_of_trust->verified_boot_state, vb_params->verified_boot_state)) { in build_attestation_record()
1287 if (record->root_of_trust) { in extract_auth_list()
[all …]
/system/keymaster/include/keymaster/key_blob_utils/
Dsoftware_keyblobs.h37 const KeymasterBlob& root_of_trust);
/system/keymaster/include/keymaster/contexts/
Dsoft_keymaster_context.h49 explicit SoftKeymasterContext(KmVersion version, const std::string& root_of_trust = "SW");
/system/keymaster/contexts/
Dsoft_keymaster_context.cpp53 SoftKeymasterContext::SoftKeymasterContext(KmVersion version, const std::string& root_of_trust) in SoftKeymasterContext() argument
60 km1_dev_(nullptr), root_of_trust_(string2Blob(root_of_trust)), os_version_(0), in SoftKeymasterContext()
/system/keymaster/key_blob_utils/
Dsoftware_keyblobs.cpp81 const KeymasterBlob& root_of_trust) { in BuildHiddenAuthorizations() argument
88 hidden->push_back(TAG_ROOT_OF_TRUST, root_of_trust); in BuildHiddenAuthorizations()
/system/keymaster/include/keymaster/km_openssl/
Dattestation_record.h105 KM_ROOT_OF_TRUST* root_of_trust; member
164 ASN1_EXP_OPT(KM_AUTH_LIST, root_of_trust, KM_ROOT_OF_TRUST, TAG_ROOT_OF_TRUST.masked_tag()),
/system/keymaster/tests/
Dandroid_keymaster_test.cpp100 explicit TestKeymasterContext(const string& root_of_trust) in TestKeymasterContext() argument
101 : SoftKeymasterContext(kCurrentKmVersion, root_of_trust) {} in TestKeymasterContext()
102 explicit TestKeymasterContext(KmVersion version, const string& root_of_trust) in TestKeymasterContext() argument
103 : SoftKeymasterContext(version, root_of_trust) {} in TestKeymasterContext()