chromium/third_party/webrtc/rtc_base/rtc_certificate.cc

/*
 *  Copyright 2015 The WebRTC Project Authors. All rights reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "rtc_base/rtc_certificate.h"

#include <memory>

#include "rtc_base/checks.h"
#include "rtc_base/ssl_certificate.h"
#include "rtc_base/ssl_identity.h"
#include "rtc_base/time_utils.h"

namespace rtc {

scoped_refptr<RTCCertificate> RTCCertificate::Create(
    std::unique_ptr<SSLIdentity> identity) {}

RTCCertificate::RTCCertificate(SSLIdentity* identity) :{}

RTCCertificate::~RTCCertificate() = default;

uint64_t RTCCertificate::Expires() const {}

bool RTCCertificate::HasExpired(uint64_t now) const {}

const SSLCertificate& RTCCertificate::GetSSLCertificate() const {}

const SSLCertChain& RTCCertificate::GetSSLCertificateChain() const {}

RTCCertificatePEM RTCCertificate::ToPEM() const {}

scoped_refptr<RTCCertificate> RTCCertificate::FromPEM(
    const RTCCertificatePEM& pem) {}

bool RTCCertificate::operator==(const RTCCertificate& certificate) const {}

bool RTCCertificate::operator!=(const RTCCertificate& certificate) const {}

}  // namespace rtc