blob: dd6f40a6afcc07d8e17684e2c6a81a9bb3ea007b [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"
Henrik Boström41b3a382015-08-20 12:15:54 +020017
18namespace rtc {
19
20scoped_refptr<RTCCertificate> RTCCertificate::Create(
jbauch555604a2016-04-26 03:13:22 -070021 std::unique_ptr<SSLIdentity> identity) {
Henrik Boström41b3a382015-08-20 12:15:54 +020022 return new RefCountedObject<RTCCertificate>(identity.release());
23}
24
25RTCCertificate::RTCCertificate(SSLIdentity* identity)
26 : identity_(identity) {
henrikg91d6ede2015-09-17 00:24:34 -070027 RTC_DCHECK(identity_);
Henrik Boström41b3a382015-08-20 12:15:54 +020028}
29
30RTCCertificate::~RTCCertificate() {
31}
32
hbos3980d462015-12-09 05:26:49 -080033uint64_t RTCCertificate::Expires() const {
34 int64_t expires = ssl_certificate().CertificateExpirationTime();
35 if (expires != -1)
36 return static_cast<uint64_t>(expires) * kNumMillisecsPerSec;
37 // If the expiration time could not be retrieved return an expired timestamp.
38 return 0; // = 1970-01-01
Henrik Boström41b3a382015-08-20 12:15:54 +020039}
40
hbos3980d462015-12-09 05:26:49 -080041bool RTCCertificate::HasExpired(uint64_t now) const {
42 return Expires() <= now;
Henrik Boström41b3a382015-08-20 12:15:54 +020043}
44
45const SSLCertificate& RTCCertificate::ssl_certificate() const {
46 return identity_->certificate();
47}
48
hbos6b470a92016-04-28 05:14:21 -070049RTCCertificatePEM RTCCertificate::ToPEM() const {
50 return RTCCertificatePEM(identity_->PrivateKeyToPEMString(),
51 ssl_certificate().ToPEMString());
52}
53
54scoped_refptr<RTCCertificate> RTCCertificate::FromPEM(
55 const RTCCertificatePEM& pem) {
56 std::unique_ptr<SSLIdentity> identity(SSLIdentity::FromPEMStrings(
57 pem.private_key(), pem.certificate()));
jbromanb9eaeba2016-10-20 10:27:21 -070058 if (!identity)
59 return nullptr;
hbos6b470a92016-04-28 05:14:21 -070060 return new RefCountedObject<RTCCertificate>(identity.release());
61}
62
63bool RTCCertificate::operator==(const RTCCertificate& certificate) const {
64 return *this->identity_ == *certificate.identity_;
65}
66
67bool RTCCertificate::operator!=(const RTCCertificate& certificate) const {
68 return !(*this == certificate);
69}
70
Henrik Boström41b3a382015-08-20 12:15:54 +020071} // namespace rtc