• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2011 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "net/ssl/ssl_cert_request_info.h"
6 
7 #include "net/cert/x509_certificate.h"
8 
9 namespace net {
10 
11 SSLCertRequestInfo::SSLCertRequestInfo() = default;
12 
Reset()13 void SSLCertRequestInfo::Reset() {
14   host_and_port = HostPortPair();
15   is_proxy = false;
16   cert_authorities.clear();
17   signature_algorithms.clear();
18 }
19 
20 SSLCertRequestInfo::~SSLCertRequestInfo() = default;
21 
22 }  // namespace net
23