blob: 7b764bd72e66faa2a63afb49894f61414ca15d08 [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
11#include "webrtc/base/rtccertificate.h"
12
13#include "webrtc/base/checks.h"
Henrik Boström41b3a382015-08-20 12:15:54 +020014
15namespace rtc {
16
17scoped_refptr<RTCCertificate> RTCCertificate::Create(
18 scoped_ptr<SSLIdentity> identity) {
19 return new RefCountedObject<RTCCertificate>(identity.release());
20}
21
22RTCCertificate::RTCCertificate(SSLIdentity* identity)
23 : identity_(identity) {
henrikg91d6ede2015-09-17 00:24:34 -070024 RTC_DCHECK(identity_);
Henrik Boström41b3a382015-08-20 12:15:54 +020025}
26
27RTCCertificate::~RTCCertificate() {
28}
29
hbos3980d462015-12-09 05:26:49 -080030uint64_t RTCCertificate::Expires() const {
31 int64_t expires = ssl_certificate().CertificateExpirationTime();
32 if (expires != -1)
33 return static_cast<uint64_t>(expires) * kNumMillisecsPerSec;
34 // If the expiration time could not be retrieved return an expired timestamp.
35 return 0; // = 1970-01-01
Henrik Boström41b3a382015-08-20 12:15:54 +020036}
37
hbos3980d462015-12-09 05:26:49 -080038bool RTCCertificate::HasExpired(uint64_t now) const {
39 return Expires() <= now;
Henrik Boström41b3a382015-08-20 12:15:54 +020040}
41
42const SSLCertificate& RTCCertificate::ssl_certificate() const {
43 return identity_->certificate();
44}
45
46} // namespace rtc