blob: 786333fcc3eb7654b8081a09e87628631d243c2c [file] [log] [blame]
Henrik Boström41b3a382015-08-20 12:15:54 +02001/*
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
jbauch555604a2016-04-26 03:13:22 -070011#include <memory>
12
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020013#include "rtc_base/rtccertificate.h"
Henrik Boström41b3a382015-08-20 12:15:54 +020014
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020015#include "rtc_base/checks.h"
Niels Möller84255bb2017-10-06 13:43:23 +020016#include "rtc_base/refcountedobject.h"
Yves Gerey2e00abc2018-10-05 15:39:24 +020017#include "rtc_base/timeutils.h"
Henrik Boström41b3a382015-08-20 12:15:54 +020018
19namespace rtc {
20
21scoped_refptr<RTCCertificate> RTCCertificate::Create(
jbauch555604a2016-04-26 03:13:22 -070022 std::unique_ptr<SSLIdentity> identity) {
Henrik Boström41b3a382015-08-20 12:15:54 +020023 return new RefCountedObject<RTCCertificate>(identity.release());
24}
25
Yves Gerey665174f2018-06-19 15:03:05 +020026RTCCertificate::RTCCertificate(SSLIdentity* identity) : identity_(identity) {
henrikg91d6ede2015-09-17 00:24:34 -070027 RTC_DCHECK(identity_);
Henrik Boström41b3a382015-08-20 12:15:54 +020028}
29
Yves Gerey665174f2018-06-19 15:03:05 +020030RTCCertificate::~RTCCertificate() {}
Henrik Boström41b3a382015-08-20 12:15:54 +020031
hbos3980d462015-12-09 05:26:49 -080032uint64_t RTCCertificate::Expires() const {
33 int64_t expires = ssl_certificate().CertificateExpirationTime();
34 if (expires != -1)
35 return static_cast<uint64_t>(expires) * kNumMillisecsPerSec;
36 // If the expiration time could not be retrieved return an expired timestamp.
37 return 0; // = 1970-01-01
Henrik Boström41b3a382015-08-20 12:15:54 +020038}
39
hbos3980d462015-12-09 05:26:49 -080040bool RTCCertificate::HasExpired(uint64_t now) const {
41 return Expires() <= now;
Henrik Boström41b3a382015-08-20 12:15:54 +020042}
43
44const SSLCertificate& RTCCertificate::ssl_certificate() const {
45 return identity_->certificate();
46}
47
Taylor Brandstetterc3928662018-02-23 13:04:51 -080048const SSLCertChain& RTCCertificate::ssl_cert_chain() const {
49 return identity_->cert_chain();
50}
51
hbos6b470a92016-04-28 05:14:21 -070052RTCCertificatePEM RTCCertificate::ToPEM() const {
53 return RTCCertificatePEM(identity_->PrivateKeyToPEMString(),
54 ssl_certificate().ToPEMString());
55}
56
57scoped_refptr<RTCCertificate> RTCCertificate::FromPEM(
58 const RTCCertificatePEM& pem) {
Yves Gerey665174f2018-06-19 15:03:05 +020059 std::unique_ptr<SSLIdentity> identity(
60 SSLIdentity::FromPEMStrings(pem.private_key(), pem.certificate()));
jbromanb9eaeba2016-10-20 10:27:21 -070061 if (!identity)
62 return nullptr;
hbos6b470a92016-04-28 05:14:21 -070063 return new RefCountedObject<RTCCertificate>(identity.release());
64}
65
66bool RTCCertificate::operator==(const RTCCertificate& certificate) const {
67 return *this->identity_ == *certificate.identity_;
68}
69
70bool RTCCertificate::operator!=(const RTCCertificate& certificate) const {
71 return !(*this == certificate);
72}
73
Henrik Boström41b3a382015-08-20 12:15:54 +020074} // namespace rtc