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

Unified Diff: chromeos/network/certificate_helper.cc

Issue 2886913004: Copy some x509_certificate_model_nss functions to src/chromeos (reland) (Closed)
Patch Set: Rebase Created 3 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
« no previous file with comments | « chromeos/network/certificate_helper.h ('k') | chromeos/network/certificate_helper_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/certificate_helper.cc
diff --git a/chromeos/network/certificate_helper.cc b/chromeos/network/certificate_helper.cc
new file mode 100644
index 0000000000000000000000000000000000000000..843d68f616a2dcdbd004d8a564c5d9887dd022b5
--- /dev/null
+++ b/chromeos/network/certificate_helper.cc
@@ -0,0 +1,93 @@
+// Copyright 2017 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 "chromeos/network/certificate_helper.h"
+
+#include <certdb.h>
+#include <pk11pub.h>
+#include <secport.h>
+
+#include "base/strings/string16.h"
+#include "base/strings/utf_string_conversions.h"
+#include "components/url_formatter/url_formatter.h"
+#include "net/cert/nss_cert_database_chromeos.h"
+
+namespace chromeos {
+namespace certificate {
+
+namespace {
+
+// Convert a char* return value from NSS into a std::string and free the NSS
+// memory. If |nss_text| is null, |alternative_text| will be returned instead.
+std::string Stringize(char* nss_text, const std::string& alternative_text) {
+ if (!nss_text)
+ return alternative_text;
+
+ std::string s = nss_text;
+ PORT_Free(nss_text);
+ return !s.empty() ? s : alternative_text;
+}
+
+std::string GetNickname(net::X509Certificate::OSCertHandle cert_handle) {
+ if (!cert_handle->nickname)
+ return std::string();
+ std::string name = cert_handle->nickname;
+ // Hack copied from mozilla: Cut off text before first :, which seems to
+ // just be the token name.
+ size_t colon_pos = name.find(':');
+ if (colon_pos != std::string::npos)
+ name = name.substr(colon_pos + 1);
+ return name;
+}
+
+} // namespace
+
+net::CertType GetCertType(net::X509Certificate::OSCertHandle cert_handle) {
+ CERTCertTrust trust = {0};
+ CERT_GetCertTrust(cert_handle, &trust);
+
+ unsigned all_flags =
+ trust.sslFlags | trust.emailFlags | trust.objectSigningFlags;
+
+ if (cert_handle->nickname && (all_flags & CERTDB_USER))
+ return net::USER_CERT;
+
+ if ((all_flags & CERTDB_VALID_CA) || CERT_IsCACert(cert_handle, nullptr))
+ return net::CA_CERT;
+
+ // TODO(mattm): http://crbug.com/128633.
+ if (trust.sslFlags & CERTDB_TERMINAL_RECORD)
+ return net::SERVER_CERT;
+
+ return net::OTHER_CERT;
+}
+
+std::string GetCertTokenName(net::X509Certificate::OSCertHandle cert_handle) {
+ std::string token;
+ if (cert_handle->slot)
+ token = PK11_GetTokenName(cert_handle->slot);
+ return token;
+}
+
+std::string GetIssuerCommonName(net::X509Certificate::OSCertHandle cert_handle,
+ const std::string& alternative_text) {
+ return Stringize(CERT_GetCommonName(&cert_handle->issuer), alternative_text);
+}
+
+std::string GetCertNameOrNickname(
+ net::X509Certificate::OSCertHandle cert_handle) {
+ std::string name = GetCertAsciiNameOrNickname(cert_handle);
+ if (!name.empty())
+ name = base::UTF16ToUTF8(url_formatter::IDNToUnicode(name));
+ return name;
+}
+
+std::string GetCertAsciiNameOrNickname(
+ net::X509Certificate::OSCertHandle cert_handle) {
+ std::string alternative_text = GetNickname(cert_handle);
+ return Stringize(CERT_GetCommonName(&cert_handle->subject), alternative_text);
+}
+
+} // namespace certificate
+} // namespace chromeos
« no previous file with comments | « chromeos/network/certificate_helper.h ('k') | chromeos/network/certificate_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698