Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: net/cert/internal/cert_issuer_source_static.cc

Issue 1923433002: Certificate path builder for new certificate verification library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changes for review comment #20 Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/cert/internal/cert_issuer_source_static.h" 5 #include "net/cert/internal/cert_issuer_source_static.h"
6 6
7 #include "net/cert/internal/parsed_certificate.h"
8
9 namespace net { 7 namespace net {
10 8
11 CertIssuerSourceStatic::CertIssuerSourceStatic() = default; 9 CertIssuerSourceStatic::CertIssuerSourceStatic() = default;
12 CertIssuerSourceStatic::~CertIssuerSourceStatic() = default; 10 CertIssuerSourceStatic::~CertIssuerSourceStatic() = default;
13 11
14 void CertIssuerSourceStatic::AddCert(scoped_refptr<ParsedCertificate> cert) { 12 void CertIssuerSourceStatic::AddCert(scoped_refptr<ParsedCertificate> cert) {
15 intermediates_.insert(std::make_pair( 13 intermediates_.insert(std::make_pair(
16 cert->normalized_subject().AsStringPiece(), std::move(cert))); 14 cert->normalized_subject().AsStringPiece(), std::move(cert)));
17 } 15 }
18 16
19 void CertIssuerSourceStatic::SyncGetIssuersOf( 17 void CertIssuerSourceStatic::SyncGetIssuersOf(const ParsedCertificate* cert,
20 const ParsedCertificate* cert, 18 ParsedCertificateList* issuers) {
21 std::vector<scoped_refptr<ParsedCertificate>>* issuers) {
22 auto range = 19 auto range =
23 intermediates_.equal_range(cert->normalized_issuer().AsStringPiece()); 20 intermediates_.equal_range(cert->normalized_issuer().AsStringPiece());
24 for (auto it = range.first; it != range.second; ++it) 21 for (auto it = range.first; it != range.second; ++it)
25 issuers->push_back(it->second); 22 issuers->push_back(it->second);
26 } 23 }
27 24
28 void CertIssuerSourceStatic::AsyncGetIssuersOf( 25 void CertIssuerSourceStatic::AsyncGetIssuersOf(
29 const ParsedCertificate* cert, 26 const ParsedCertificate* cert,
30 const IssuerCallback& issuers_callback, 27 const IssuerCallback& issuers_callback,
31 std::unique_ptr<Request>* out_req) { 28 std::unique_ptr<Request>* out_req) {
32 // CertIssuerSourceStatic never returns asynchronous results. 29 // CertIssuerSourceStatic never returns asynchronous results.
33 out_req->reset(); 30 out_req->reset();
34 } 31 }
35 32
36 } // namespace net 33 } // namespace net
OLDNEW
« no previous file with comments | « net/cert/internal/cert_issuer_source_static.h ('k') | net/cert/internal/cert_issuer_source_static_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698