mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-18 16:17:50 +01:00

In https://webrtc-review.googlesource.com/c/src/+/1560 we moved WebRTC from src/webrtc to src/ (in order to preserve an healthy git history). This CL takes care of fixing header guards, #include paths, etc... NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iea91618212bee0af16aa3f05071eab8f93706578 Reviewed-on: https://webrtc-review.googlesource.com/1561 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19846}
70 lines
2 KiB
C++
70 lines
2 KiB
C++
/*
|
|
* 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 <memory>
|
|
|
|
#include "rtc_base/rtccertificate.h"
|
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
namespace rtc {
|
|
|
|
scoped_refptr<RTCCertificate> RTCCertificate::Create(
|
|
std::unique_ptr<SSLIdentity> identity) {
|
|
return new RefCountedObject<RTCCertificate>(identity.release());
|
|
}
|
|
|
|
RTCCertificate::RTCCertificate(SSLIdentity* identity)
|
|
: identity_(identity) {
|
|
RTC_DCHECK(identity_);
|
|
}
|
|
|
|
RTCCertificate::~RTCCertificate() {
|
|
}
|
|
|
|
uint64_t RTCCertificate::Expires() const {
|
|
int64_t expires = ssl_certificate().CertificateExpirationTime();
|
|
if (expires != -1)
|
|
return static_cast<uint64_t>(expires) * kNumMillisecsPerSec;
|
|
// If the expiration time could not be retrieved return an expired timestamp.
|
|
return 0; // = 1970-01-01
|
|
}
|
|
|
|
bool RTCCertificate::HasExpired(uint64_t now) const {
|
|
return Expires() <= now;
|
|
}
|
|
|
|
const SSLCertificate& RTCCertificate::ssl_certificate() const {
|
|
return identity_->certificate();
|
|
}
|
|
|
|
RTCCertificatePEM RTCCertificate::ToPEM() const {
|
|
return RTCCertificatePEM(identity_->PrivateKeyToPEMString(),
|
|
ssl_certificate().ToPEMString());
|
|
}
|
|
|
|
scoped_refptr<RTCCertificate> RTCCertificate::FromPEM(
|
|
const RTCCertificatePEM& pem) {
|
|
std::unique_ptr<SSLIdentity> identity(SSLIdentity::FromPEMStrings(
|
|
pem.private_key(), pem.certificate()));
|
|
if (!identity)
|
|
return nullptr;
|
|
return new RefCountedObject<RTCCertificate>(identity.release());
|
|
}
|
|
|
|
bool RTCCertificate::operator==(const RTCCertificate& certificate) const {
|
|
return *this->identity_ == *certificate.identity_;
|
|
}
|
|
|
|
bool RTCCertificate::operator!=(const RTCCertificate& certificate) const {
|
|
return !(*this == certificate);
|
|
}
|
|
|
|
} // namespace rtc
|