blob: e0b6b3258e0a42466b00283d38b5aad715bed11e [file] [log] [blame]
Henrik Boström41b3a382015-08-20 10:15:541/*
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 17:11:0011#include "rtc_base/rtc_certificate.h"
Henrik Boström41b3a382015-08-20 10:15:5412
Jonas Olssona4d87372019-07-05 17:08:3313#include <memory>
14
Mirko Bonadei92ea95e2017-09-15 04:47:3115#include "rtc_base/checks.h"
Steve Anton10542f22019-01-11 17:11:0016#include "rtc_base/ssl_certificate.h"
17#include "rtc_base/ssl_identity.h"
18#include "rtc_base/time_utils.h"
Henrik Boström41b3a382015-08-20 10:15:5419
20namespace rtc {
21
22scoped_refptr<RTCCertificate> RTCCertificate::Create(
jbauch555604a2016-04-26 10:13:2223 std::unique_ptr<SSLIdentity> identity) {
Niels Möller95129102022-01-13 10:00:0524 // Explicit new to access proteced constructor.
25 return rtc::scoped_refptr<RTCCertificate>(
26 new RTCCertificate(identity.release()));
Henrik Boström41b3a382015-08-20 10:15:5427}
28
Yves Gerey665174f2018-06-19 13:03:0529RTCCertificate::RTCCertificate(SSLIdentity* identity) : identity_(identity) {
henrikg91d6ede2015-09-17 07:24:3430 RTC_DCHECK(identity_);
Henrik Boström41b3a382015-08-20 10:15:5431}
32
Tommi86ee89f2021-04-20 14:58:0133RTCCertificate::~RTCCertificate() = default;
Henrik Boström41b3a382015-08-20 10:15:5434
hbos3980d462015-12-09 13:26:4935uint64_t RTCCertificate::Expires() const {
Benjamin Wright6c6c9df2018-10-25 08:16:2636 int64_t expires = GetSSLCertificate().CertificateExpirationTime();
hbos3980d462015-12-09 13:26:4937 if (expires != -1)
38 return static_cast<uint64_t>(expires) * kNumMillisecsPerSec;
39 // If the expiration time could not be retrieved return an expired timestamp.
40 return 0; // = 1970-01-01
Henrik Boström41b3a382015-08-20 10:15:5441}
42
hbos3980d462015-12-09 13:26:4943bool RTCCertificate::HasExpired(uint64_t now) const {
44 return Expires() <= now;
Henrik Boström41b3a382015-08-20 10:15:5445}
46
Benjamin Wright6c6c9df2018-10-25 08:16:2647const SSLCertificate& RTCCertificate::GetSSLCertificate() const {
48 return identity_->certificate();
49}
50
Benjamin Wright6c6c9df2018-10-25 08:16:2651const SSLCertChain& RTCCertificate::GetSSLCertificateChain() const {
Taylor Brandstetterc3928662018-02-23 21:04:5152 return identity_->cert_chain();
53}
54
hbos6b470a92016-04-28 12:14:2155RTCCertificatePEM RTCCertificate::ToPEM() const {
56 return RTCCertificatePEM(identity_->PrivateKeyToPEMString(),
Benjamin Wright6c6c9df2018-10-25 08:16:2657 GetSSLCertificate().ToPEMString());
hbos6b470a92016-04-28 12:14:2158}
59
60scoped_refptr<RTCCertificate> RTCCertificate::FromPEM(
61 const RTCCertificatePEM& pem) {
Yves Gerey665174f2018-06-19 13:03:0562 std::unique_ptr<SSLIdentity> identity(
Harald Alvestrand8515d5a2020-03-20 21:51:3263 SSLIdentity::CreateFromPEMStrings(pem.private_key(), pem.certificate()));
jbromanb9eaeba2016-10-20 17:27:2164 if (!identity)
65 return nullptr;
Niels Möller95129102022-01-13 10:00:0566 return RTCCertificate::Create(std::move(identity));
hbos6b470a92016-04-28 12:14:2167}
68
69bool RTCCertificate::operator==(const RTCCertificate& certificate) const {
70 return *this->identity_ == *certificate.identity_;
71}
72
73bool RTCCertificate::operator!=(const RTCCertificate& certificate) const {
74 return !(*this == certificate);
75}
76
Henrik Boström41b3a382015-08-20 10:15:5477} // namespace rtc