blob: 102385e5a2860b4a52fdb1376c3ca9cc0d37cef3 [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
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef RTC_BASE_RTC_CERTIFICATE_H_
12#define RTC_BASE_RTC_CERTIFICATE_H_
Henrik Boström41b3a382015-08-20 12:15:54 +020013
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020014#include <stdint.h>
Jonas Olssona4d87372019-07-05 19:08:33 +020015
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020016#include <memory>
Yves Gerey988cc082018-10-23 12:03:01 +020017#include <string>
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020018
Mirko Bonadeid9708072019-01-25 20:26:48 +010019#include "api/scoped_refptr.h"
Steve Anton10542f22019-01-11 09:11:00 -080020#include "rtc_base/ref_count.h"
Mirko Bonadei35214fc2019-09-23 14:54:28 +020021#include "rtc_base/system/rtc_export.h"
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020022
23namespace rtc {
24
Yves Gerey988cc082018-10-23 12:03:01 +020025class SSLCertChain;
26class SSLCertificate;
27class SSLIdentity;
28
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020029// This class contains PEM strings of an RTCCertificate's private key and
30// certificate and acts as a text representation of RTCCertificate. Certificates
31// can be serialized and deserialized to and from this format, which allows for
32// cloning and storing of certificates to disk. The PEM format is that of
33// |SSLIdentity::PrivateKeyToPEMString| and |SSLCertificate::ToPEMString|, e.g.
34// the string representations used by OpenSSL.
35class RTCCertificatePEM {
36 public:
Yves Gerey665174f2018-06-19 15:03:05 +020037 RTCCertificatePEM(const std::string& private_key,
38 const std::string& certificate)
39 : private_key_(private_key), certificate_(certificate) {}
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020040
41 const std::string& private_key() const { return private_key_; }
42 const std::string& certificate() const { return certificate_; }
43
44 private:
45 std::string private_key_;
46 std::string certificate_;
47};
48
49// A thin abstraction layer between "lower level crypto stuff" like
50// SSLCertificate and WebRTC usage. Takes ownership of some lower level objects,
51// reference counting protects these from premature destruction.
Mirko Bonadei35214fc2019-09-23 14:54:28 +020052class RTC_EXPORT RTCCertificate : public RefCountInterface {
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020053 public:
54 // Takes ownership of |identity|.
55 static scoped_refptr<RTCCertificate> Create(
56 std::unique_ptr<SSLIdentity> identity);
57
58 // Returns the expiration time in ms relative to epoch, 1970-01-01T00:00:00Z.
59 uint64_t Expires() const;
60 // Checks if the certificate has expired, where |now| is expressed in ms
61 // relative to epoch, 1970-01-01T00:00:00Z.
62 bool HasExpired(uint64_t now) const;
Benjamin Wright6c6c9df2018-10-25 01:16:26 -070063
64 const SSLCertificate& GetSSLCertificate() const;
65 const SSLCertChain& GetSSLCertificateChain() const;
66
67 // Deprecated: TODO(benwright) - Remove once chromium is updated.
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020068 const SSLCertificate& ssl_certificate() const;
69
70 // TODO(hbos): If possible, remove once RTCCertificate and its
Benjamin Wright6c6c9df2018-10-25 01:16:26 -070071 // GetSSLCertificate() is used in all relevant places. Should not pass around
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020072 // raw SSLIdentity* for the sake of accessing SSLIdentity::certificate().
73 // However, some places might need SSLIdentity* for its public/private key...
74 SSLIdentity* identity() const { return identity_.get(); }
75
76 // To/from PEM, a text representation of the RTCCertificate.
77 RTCCertificatePEM ToPEM() const;
78 // Can return nullptr if the certificate is invalid.
79 static scoped_refptr<RTCCertificate> FromPEM(const RTCCertificatePEM& pem);
80 bool operator==(const RTCCertificate& certificate) const;
81 bool operator!=(const RTCCertificate& certificate) const;
82
83 protected:
84 explicit RTCCertificate(SSLIdentity* identity);
85 ~RTCCertificate() override;
86
87 private:
88 // The SSLIdentity is the owner of the SSLCertificate. To protect our
Benjamin Wright6c6c9df2018-10-25 01:16:26 -070089 // GetSSLCertificate() we take ownership of |identity_|.
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020090 std::unique_ptr<SSLIdentity> identity_;
91};
92
93} // namespace rtc
Henrik Boström41b3a382015-08-20 12:15:54 +020094
Steve Anton10542f22019-01-11 09:11:00 -080095#endif // RTC_BASE_RTC_CERTIFICATE_H_