We started redesigning GpuMemoryBuffer interface to handle multiple buffers [0].
[chromium-blink-merge.git] / net / ssl / ssl_config.cc
blob42445af64a7b3d5e9869c2e9a6a6c186c64eee49
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/ssl/ssl_config.h"
7 #include "net/socket/ssl_client_socket.h"
9 namespace net {
11 const uint16 kDefaultSSLVersionMin = SSL_PROTOCOL_VERSION_TLS1;
13 const uint16 kDefaultSSLVersionFallbackMin = SSL_PROTOCOL_VERSION_TLS1;
15 SSLConfig::CertAndStatus::CertAndStatus() : cert_status(0) {}
17 SSLConfig::CertAndStatus::~CertAndStatus() {}
19 SSLConfig::SSLConfig()
20 : rev_checking_enabled(false),
21 rev_checking_required_local_anchors(false),
22 version_min(kDefaultSSLVersionMin),
23 version_max(SSLClientSocket::GetMaxSupportedSSLVersion()),
24 version_fallback_min(kDefaultSSLVersionFallbackMin),
25 enable_deprecated_cipher_suites(false),
26 channel_id_enabled(true),
27 false_start_enabled(true),
28 signed_cert_timestamps_enabled(true),
29 require_forward_secrecy(false),
30 send_client_cert(false),
31 verify_ev_cert(false),
32 version_fallback(false),
33 cert_io_enabled(true),
34 fastradio_padding_enabled(false),
35 fastradio_padding_eligible(false) {
38 SSLConfig::~SSLConfig() {}
40 bool SSLConfig::IsAllowedBadCert(X509Certificate* cert,
41 CertStatus* cert_status) const {
42 std::string der_cert;
43 if (!X509Certificate::GetDEREncoded(cert->os_cert_handle(), &der_cert))
44 return false;
45 return IsAllowedBadCert(der_cert, cert_status);
48 bool SSLConfig::IsAllowedBadCert(const base::StringPiece& der_cert,
49 CertStatus* cert_status) const {
50 for (size_t i = 0; i < allowed_bad_certs.size(); ++i) {
51 if (der_cert == allowed_bad_certs[i].der_cert) {
52 if (cert_status)
53 *cert_status = allowed_bad_certs[i].cert_status;
54 return true;
57 return false;
60 } // namespace net