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

Unified Diff: net/cert/internal/cert_source_static.cc

Issue 2030693002: Add CertIssuerSource interface and CertIssuerSourceStatic implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cert-parsing-base
Patch Set: . Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: net/cert/internal/cert_source_static.cc
diff --git a/net/cert/internal/cert_source_static.cc b/net/cert/internal/cert_source_static.cc
new file mode 100644
index 0000000000000000000000000000000000000000..894378d883bceeb562d236e1e9b992d0bb227f9c
--- /dev/null
+++ b/net/cert/internal/cert_source_static.cc
@@ -0,0 +1,35 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "net/cert/internal/cert_source_static.h"
+
+#include "net/cert/internal/parsed_certificate.h"
+
+namespace net {
+
+CertSourceStatic::CertSourceStatic() {}
+CertSourceStatic::~CertSourceStatic() {}
+
+void CertSourceStatic::AddCert(scoped_refptr<ParsedCertificate> cert) {
+ intermediates_.insert(std::make_pair(
+ cert->normalized_subject().AsStringPiece(), std::move(cert)));
+}
+
+void CertSourceStatic::SyncGetIssuersOf(
+ const ParsedCertificate* cert,
+ std::vector<scoped_refptr<ParsedCertificate>>* issuers) {
+ auto range =
+ intermediates_.equal_range(cert->normalized_issuer().AsStringPiece());
+ for (auto it = range.first; it != range.second; ++it)
+ issuers->push_back(it->second);
+}
+
+void CertSourceStatic::AsyncGetIssuersOf(const ParsedCertificate* cert,
+ const IssuerCallback& issuers_callback,
+ std::unique_ptr<Request>* out_req) {
+ // CertSourceStatic never returns asynchronous results.
+ out_req->reset();
+}
+
+} // namespace net

Powered by Google App Engine
This is Rietveld 408576698