ssl_info.cc 500 B

1234567891011121314151617181920212223
  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
  3. // found in the LICENSE file.
  4. #include "net/ssl/ssl_info.h"
  5. #include "net/cert/x509_certificate.h"
  6. namespace net {
  7. SSLInfo::SSLInfo() = default;
  8. SSLInfo::SSLInfo(const SSLInfo& info) = default;
  9. SSLInfo::~SSLInfo() = default;
  10. SSLInfo& SSLInfo::operator=(const SSLInfo& info) = default;
  11. void SSLInfo::Reset() {
  12. *this = SSLInfo();
  13. }
  14. } // namespace net