blob: 742d430a4e78110574e36ca519fef2515a72b1a5 [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
19import 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
23/** @hide */
24public final class CertificatesEntryRef {
25 private final CertificateSource mSource;
26 private final boolean mOverridesPins;
27
28 public CertificatesEntryRef(CertificateSource source, boolean overridesPins) {
29 mSource = source;
30 mOverridesPins = overridesPins;
31 }
32
Chad Brubakerd3af9622015-11-16 10:48:20 -080033 boolean overridesPins() {
34 return mOverridesPins;
35 }
36
Chad Brubaker6bc1e392015-10-23 15:33:56 -070037 public Set<TrustAnchor> getTrustAnchors() {
38 // TODO: cache this [but handle mutable sources]
39 Set<TrustAnchor> anchors = new ArraySet<TrustAnchor>();
40 for (X509Certificate cert : mSource.getCertificates()) {
41 anchors.add(new TrustAnchor(cert, mOverridesPins));
42 }
43 return anchors;
44 }
Chad Brubakerd3af9622015-11-16 10:48:20 -080045
46 public TrustAnchor findBySubjectAndPublicKey(X509Certificate cert) {
47 X509Certificate foundCert = mSource.findBySubjectAndPublicKey(cert);
48 if (foundCert == null) {
49 return null;
50 }
51
52 return new TrustAnchor(foundCert, mOverridesPins);
53 }
Chad Brubakerfa9beeb2015-11-25 13:12:55 -080054
55 public TrustAnchor findByIssuerAndSignature(X509Certificate cert) {
56 X509Certificate foundCert = mSource.findByIssuerAndSignature(cert);
57 if (foundCert == null) {
58 return null;
59 }
60
61 return new TrustAnchor(foundCert, mOverridesPins);
62 }
Chad Brubakeraa6c3c32015-12-18 13:43:28 -080063
64 public Set<X509Certificate> findAllCertificatesByIssuerAndSignature(X509Certificate cert) {
65 return mSource.findAllByIssuerAndSignature(cert);
66 }
Chad Brubaker6bc1e392015-10-23 15:33:56 -070067}