ssl_cert_request_info.cc 544 B

12345678910111213141516171819202122
  1. // Copyright (c) 2011 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.
  4. #include "net/ssl/ssl_cert_request_info.h"
  5. #include "net/cert/x509_certificate.h"
  6. namespace net {
  7. SSLCertRequestInfo::SSLCertRequestInfo() = default;
  8. void SSLCertRequestInfo::Reset() {
  9. host_and_port = HostPortPair();
  10. is_proxy = false;
  11. cert_authorities.clear();
  12. cert_key_types.clear();
  13. }
  14. SSLCertRequestInfo::~SSLCertRequestInfo() = default;
  15. } // namespace net