blob: ce9aa475128ecf6845194b32d489c18951ad7b63 [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
Tommi86ee89f2021-04-20 16:58:01 +020019#include "api/ref_counted_base.h"
Mirko Bonadeid9708072019-01-25 20:26:48 +010020#include "api/scoped_refptr.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.
Tommi86ee89f2021-04-20 16:58:01 +020052class RTC_EXPORT RTCCertificate final
53 : public RefCountedNonVirtual<RTCCertificate> {
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020054 public:
55 // Takes ownership of |identity|.
56 static scoped_refptr<RTCCertificate> Create(
57 std::unique_ptr<SSLIdentity> identity);
58
59 // Returns the expiration time in ms relative to epoch, 1970-01-01T00:00:00Z.
60 uint64_t Expires() const;
61 // Checks if the certificate has expired, where |now| is expressed in ms
62 // relative to epoch, 1970-01-01T00:00:00Z.
63 bool HasExpired(uint64_t now) const;
Benjamin Wright6c6c9df2018-10-25 01:16:26 -070064
65 const SSLCertificate& GetSSLCertificate() const;
66 const SSLCertChain& GetSSLCertificateChain() const;
67
68 // Deprecated: TODO(benwright) - Remove once chromium is updated.
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020069 const SSLCertificate& ssl_certificate() const;
70
71 // TODO(hbos): If possible, remove once RTCCertificate and its
Benjamin Wright6c6c9df2018-10-25 01:16:26 -070072 // GetSSLCertificate() is used in all relevant places. Should not pass around
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020073 // raw SSLIdentity* for the sake of accessing SSLIdentity::certificate().
74 // However, some places might need SSLIdentity* for its public/private key...
75 SSLIdentity* identity() const { return identity_.get(); }
76
77 // To/from PEM, a text representation of the RTCCertificate.
78 RTCCertificatePEM ToPEM() const;
79 // Can return nullptr if the certificate is invalid.
80 static scoped_refptr<RTCCertificate> FromPEM(const RTCCertificatePEM& pem);
81 bool operator==(const RTCCertificate& certificate) const;
82 bool operator!=(const RTCCertificate& certificate) const;
83
84 protected:
85 explicit RTCCertificate(SSLIdentity* identity);
Tommi86ee89f2021-04-20 16:58:01 +020086
87 friend class RefCountedNonVirtual<RTCCertificate>;
88 ~RTCCertificate();
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020089
90 private:
91 // The SSLIdentity is the owner of the SSLCertificate. To protect our
Benjamin Wright6c6c9df2018-10-25 01:16:26 -070092 // GetSSLCertificate() we take ownership of |identity_|.
Tomas Gunnarsson3cccdb82021-03-29 19:34:00 +020093 const std::unique_ptr<SSLIdentity> identity_;
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020094};
95
96} // namespace rtc
Henrik Boström41b3a382015-08-20 12:15:54 +020097
Steve Anton10542f22019-01-11 09:11:00 -080098#endif // RTC_BASE_RTC_CERTIFICATE_H_