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

Side by Side Diff: net/http/transport_security_state.cc

Issue 13006020: net: extract net/cert out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/http/transport_security_state.h" 5 #include "net/http/transport_security_state.h"
6 6
7 #if defined(USE_OPENSSL) 7 #if defined(USE_OPENSSL)
8 #include <openssl/ecdsa.h> 8 #include <openssl/ecdsa.h>
9 #include <openssl/ssl.h> 9 #include <openssl/ssl.h>
10 #else // !defined(USE_OPENSSL) 10 #else // !defined(USE_OPENSSL)
(...skipping 13 matching lines...) Expand all
24 #include "base/metrics/histogram.h" 24 #include "base/metrics/histogram.h"
25 #include "base/sha1.h" 25 #include "base/sha1.h"
26 #include "base/string_number_conversions.h" 26 #include "base/string_number_conversions.h"
27 #include "base/string_util.h" 27 #include "base/string_util.h"
28 #include "base/time.h" 28 #include "base/time.h"
29 #include "base/utf_string_conversions.h" 29 #include "base/utf_string_conversions.h"
30 #include "base/values.h" 30 #include "base/values.h"
31 #include "crypto/sha2.h" 31 #include "crypto/sha2.h"
32 #include "googleurl/src/gurl.h" 32 #include "googleurl/src/gurl.h"
33 #include "net/base/dns_util.h" 33 #include "net/base/dns_util.h"
34 #include "net/base/x509_cert_types.h" 34 #include "net/cert/x509_cert_types.h"
35 #include "net/base/x509_certificate.h" 35 #include "net/cert/x509_certificate.h"
36 #include "net/http/http_security_headers.h" 36 #include "net/http/http_security_headers.h"
37 #include "net/ssl/ssl_info.h" 37 #include "net/ssl/ssl_info.h"
38 38
39 #if defined(USE_OPENSSL) 39 #if defined(USE_OPENSSL)
40 #include "crypto/openssl_util.h" 40 #include "crypto/openssl_util.h"
41 #endif 41 #endif
42 42
43 namespace net { 43 namespace net {
44 44
45 namespace { 45 namespace {
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 return true; 845 return true;
846 } 846 }
847 847
848 bool TransportSecurityState::DomainState::HasPublicKeyPins() const { 848 bool TransportSecurityState::DomainState::HasPublicKeyPins() const {
849 return static_spki_hashes.size() > 0 || 849 return static_spki_hashes.size() > 0 ||
850 bad_static_spki_hashes.size() > 0 || 850 bad_static_spki_hashes.size() > 0 ||
851 dynamic_spki_hashes.size() > 0; 851 dynamic_spki_hashes.size() > 0;
852 } 852 }
853 853
854 } // namespace 854 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698