1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/** 4 * Copyright (C) 2022 The Android Open Source Project 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 * See the License for the specific language governing permissions and 16 * limitations under the License. 17 */ 18--> 19<resources> 20 <!-- The PEM-encoded certificates added here are used for verifying attestations. 21 The trustworthiness of the attestation depends on the root certificate of the chain. 22 23 Certificates that can be used can be retrieved from: 24 https://developer.android.com/training/articles/security-key-attestation#root_certificate. 25 26 If not already present in resource overlay, please add 27 vendor_required_attestation_certificates.xml (matching this file) in vendor overlay 28 with <item></item> of the PEM-encoded root certificates. 29 --> 30 <string-array translatable="false" name="vendor_required_attestation_certificates"> 31 </string-array> 32 33 <!-- Url to mapping of revoked certificates' hex encoded serial numbers. Example format 34 can be found at: 35 https://developer.android.com/training/articles/security-key-attestation#certificate_status 36 --> 37 <string translatable="false" name="vendor_required_attestation_revocation_list_url"></string> 38</resources> 39