summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-08-08 12:25:16 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-08-08 12:25:16 +0000
commit2f6d4e7b4201b354f815452872d5a6063d28c2ee (patch)
tree427eda775c48afa86bf2219797d8a8c19fe43b0d
parent6988e89905b0f477e0e16f8d660660bc1f286074 (diff)
parentdbea77ebb5345c9ce1d84db198ae78d7b1536fe5 (diff)
downloadsecurity-android13-mainline-ipsec-release.tar.gz
Snap for 8917908 from dbea77ebb5345c9ce1d84db198ae78d7b1536fe5 to mainline-ipsec-releaseaml_ips_331910010aml_ips_331312000aml_ips_331310000aml_ips_331111030aml_ips_331014020android13-mainline-ipsec-release
Change-Id: I8f5944a308e2734f3b3e0780a1342a26329fd238
-rw-r--r--keystore2/src/attestation_key_utils.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/keystore2/src/attestation_key_utils.rs b/keystore2/src/attestation_key_utils.rs
index 8354ba5c..34089425 100644
--- a/keystore2/src/attestation_key_utils.rs
+++ b/keystore2/src/attestation_key_utils.rs
@@ -59,8 +59,11 @@ pub fn get_attest_key_info(
db: &mut KeystoreDB,
) -> Result<Option<AttestationKeyInfo>> {
let challenge_present = params.iter().any(|kp| kp.tag == Tag::ATTESTATION_CHALLENGE);
+ let is_device_unique_attestation =
+ params.iter().any(|kp| kp.tag == Tag::DEVICE_UNIQUE_ATTESTATION);
match attest_key_descriptor {
- None if challenge_present => rem_prov_state
+ // Do not select an RKP key if DEVICE_UNIQUE_ATTESTATION is present.
+ None if challenge_present && !is_device_unique_attestation => rem_prov_state
.get_remotely_provisioned_attestation_key_and_certs(key, caller_uid, params, db)
.context(concat!(
"In get_attest_key_and_cert_chain: ",