blob: 0412bc74df6e18188cee8523a4561eb40940c297 [file] [log] [blame]
Chad Brubaker6bc1e392015-10-23 15:33:56 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.security.net.config;
18
Chad Brubakeraa6c3c32015-12-18 13:43:28 -080019import android.util.ArraySet;
Chad Brubaker6bc1e392015-10-23 15:33:56 -070020import java.security.cert.X509Certificate;
Chad Brubakeraa6c3c32015-12-18 13:43:28 -080021import java.util.Set;
Chad Brubaker6bc1e392015-10-23 15:33:56 -070022
Chad Brubakerd3af9622015-11-16 10:48:20 -080023import com.android.org.conscrypt.TrustedCertificateIndex;
24
Chad Brubaker6bc1e392015-10-23 15:33:56 -070025/** @hide */
26public class TestCertificateSource implements CertificateSource {
27
28 private final Set<X509Certificate> mCertificates;
Chad Brubakerd3af9622015-11-16 10:48:20 -080029 private final TrustedCertificateIndex mIndex = new TrustedCertificateIndex();
Chad Brubaker6bc1e392015-10-23 15:33:56 -070030 public TestCertificateSource(Set<X509Certificate> certificates) {
31 mCertificates = certificates;
Chad Brubakerd3af9622015-11-16 10:48:20 -080032 for (X509Certificate cert : certificates) {
33 mIndex.index(cert);
34 }
Chad Brubaker6bc1e392015-10-23 15:33:56 -070035 }
36
Chad Brubakeraa6c3c32015-12-18 13:43:28 -080037 @Override
Chad Brubaker6bc1e392015-10-23 15:33:56 -070038 public Set<X509Certificate> getCertificates() {
39 return mCertificates;
40 }
Chad Brubakerd3af9622015-11-16 10:48:20 -080041
Chad Brubakeraa6c3c32015-12-18 13:43:28 -080042 @Override
Chad Brubakerd3af9622015-11-16 10:48:20 -080043 public X509Certificate findBySubjectAndPublicKey(X509Certificate cert) {
44 java.security.cert.TrustAnchor anchor = mIndex.findBySubjectAndPublicKey(cert);
45 if (anchor == null) {
46 return null;
47 }
48 return anchor.getTrustedCert();
49 }
Chad Brubakerfa9beeb2015-11-25 13:12:55 -080050
Chad Brubakeraa6c3c32015-12-18 13:43:28 -080051 @Override
Chad Brubakerfa9beeb2015-11-25 13:12:55 -080052 public X509Certificate findByIssuerAndSignature(X509Certificate cert) {
53 java.security.cert.TrustAnchor anchor = mIndex.findByIssuerAndSignature(cert);
54 if (anchor == null) {
55 return null;
56 }
57 return anchor.getTrustedCert();
58 }
Chad Brubakeraa6c3c32015-12-18 13:43:28 -080059
60 @Override
61 public Set<X509Certificate> findAllByIssuerAndSignature(X509Certificate cert) {
62 Set<X509Certificate> certs = new ArraySet<X509Certificate>();
63 for (java.security.cert.TrustAnchor anchor : mIndex.findAllByIssuerAndSignature(cert)) {
64 certs.add(anchor.getTrustedCert());
65 }
66 return certs;
67 }
Chad Brubakerbf9a82a2016-03-25 10:12:19 -070068
69 @Override
70 public void handleTrustStorageUpdate() {
71 // Nothing to do.
72 }
Chad Brubaker6bc1e392015-10-23 15:33:56 -070073}