blob: 744b285f9341012940fb370f5790dfb5c232534b [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/ssl/ssl_info.h"
#include "net/cert/x509_certificate.h"
namespace net {
SSLInfo::SSLInfo() = default;
SSLInfo::SSLInfo(const SSLInfo& info) = default;
SSLInfo::~SSLInfo() = default;
SSLInfo& SSLInfo::operator=(const SSLInfo& info) = default;
void SSLInfo::Reset() {
*this = SSLInfo();
}
} // namespace net