Henrik Boström | 41b3a38 | 2015-08-20 12:15:54 +0200 | [diff] [blame] | 1 | /* |
| 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 | |
jbauch | 555604a | 2016-04-26 03:13:22 -0700 | [diff] [blame] | 11 | #include <memory> |
| 12 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 13 | #include "rtc_base/rtccertificate.h" |
Henrik Boström | 41b3a38 | 2015-08-20 12:15:54 +0200 | [diff] [blame] | 14 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 15 | #include "rtc_base/checks.h" |
Niels Möller | 84255bb | 2017-10-06 13:43:23 +0200 | [diff] [blame] | 16 | #include "rtc_base/refcountedobject.h" |
Henrik Boström | 41b3a38 | 2015-08-20 12:15:54 +0200 | [diff] [blame] | 17 | |
| 18 | namespace rtc { |
| 19 | |
| 20 | scoped_refptr<RTCCertificate> RTCCertificate::Create( |
jbauch | 555604a | 2016-04-26 03:13:22 -0700 | [diff] [blame] | 21 | std::unique_ptr<SSLIdentity> identity) { |
Henrik Boström | 41b3a38 | 2015-08-20 12:15:54 +0200 | [diff] [blame] | 22 | return new RefCountedObject<RTCCertificate>(identity.release()); |
| 23 | } |
| 24 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 25 | RTCCertificate::RTCCertificate(SSLIdentity* identity) : identity_(identity) { |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 26 | RTC_DCHECK(identity_); |
Henrik Boström | 41b3a38 | 2015-08-20 12:15:54 +0200 | [diff] [blame] | 27 | } |
| 28 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 29 | RTCCertificate::~RTCCertificate() {} |
Henrik Boström | 41b3a38 | 2015-08-20 12:15:54 +0200 | [diff] [blame] | 30 | |
hbos | 3980d46 | 2015-12-09 05:26:49 -0800 | [diff] [blame] | 31 | uint64_t RTCCertificate::Expires() const { |
| 32 | int64_t expires = ssl_certificate().CertificateExpirationTime(); |
| 33 | if (expires != -1) |
| 34 | return static_cast<uint64_t>(expires) * kNumMillisecsPerSec; |
| 35 | // If the expiration time could not be retrieved return an expired timestamp. |
| 36 | return 0; // = 1970-01-01 |
Henrik Boström | 41b3a38 | 2015-08-20 12:15:54 +0200 | [diff] [blame] | 37 | } |
| 38 | |
hbos | 3980d46 | 2015-12-09 05:26:49 -0800 | [diff] [blame] | 39 | bool RTCCertificate::HasExpired(uint64_t now) const { |
| 40 | return Expires() <= now; |
Henrik Boström | 41b3a38 | 2015-08-20 12:15:54 +0200 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | const SSLCertificate& RTCCertificate::ssl_certificate() const { |
| 44 | return identity_->certificate(); |
| 45 | } |
| 46 | |
Taylor Brandstetter | c392866 | 2018-02-23 13:04:51 -0800 | [diff] [blame] | 47 | const SSLCertChain& RTCCertificate::ssl_cert_chain() const { |
| 48 | return identity_->cert_chain(); |
| 49 | } |
| 50 | |
hbos | 6b470a9 | 2016-04-28 05:14:21 -0700 | [diff] [blame] | 51 | RTCCertificatePEM RTCCertificate::ToPEM() const { |
| 52 | return RTCCertificatePEM(identity_->PrivateKeyToPEMString(), |
| 53 | ssl_certificate().ToPEMString()); |
| 54 | } |
| 55 | |
| 56 | scoped_refptr<RTCCertificate> RTCCertificate::FromPEM( |
| 57 | const RTCCertificatePEM& pem) { |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 58 | std::unique_ptr<SSLIdentity> identity( |
| 59 | SSLIdentity::FromPEMStrings(pem.private_key(), pem.certificate())); |
jbroman | b9eaeba | 2016-10-20 10:27:21 -0700 | [diff] [blame] | 60 | if (!identity) |
| 61 | return nullptr; |
hbos | 6b470a9 | 2016-04-28 05:14:21 -0700 | [diff] [blame] | 62 | return new RefCountedObject<RTCCertificate>(identity.release()); |
| 63 | } |
| 64 | |
| 65 | bool RTCCertificate::operator==(const RTCCertificate& certificate) const { |
| 66 | return *this->identity_ == *certificate.identity_; |
| 67 | } |
| 68 | |
| 69 | bool RTCCertificate::operator!=(const RTCCertificate& certificate) const { |
| 70 | return !(*this == certificate); |
| 71 | } |
| 72 | |
Henrik Boström | 41b3a38 | 2015-08-20 12:15:54 +0200 | [diff] [blame] | 73 | } // namespace rtc |