blob: 0a744c41113bc71948075d13ea0e81ec2a0e0e4c [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"
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020021
22namespace rtc {
23
Yves Gerey988cc082018-10-23 12:03:01 +020024class SSLCertChain;
25class SSLCertificate;
26class SSLIdentity;
27
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020028// This class contains PEM strings of an RTCCertificate's private key and
29// certificate and acts as a text representation of RTCCertificate. Certificates
30// can be serialized and deserialized to and from this format, which allows for
31// cloning and storing of certificates to disk. The PEM format is that of
32// |SSLIdentity::PrivateKeyToPEMString| and |SSLCertificate::ToPEMString|, e.g.
33// the string representations used by OpenSSL.
34class RTCCertificatePEM {
35 public:
Yves Gerey665174f2018-06-19 15:03:05 +020036 RTCCertificatePEM(const std::string& private_key,
37 const std::string& certificate)
38 : private_key_(private_key), certificate_(certificate) {}
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020039
40 const std::string& private_key() const { return private_key_; }
41 const std::string& certificate() const { return certificate_; }
42
43 private:
44 std::string private_key_;
45 std::string certificate_;
46};
47
48// A thin abstraction layer between "lower level crypto stuff" like
49// SSLCertificate and WebRTC usage. Takes ownership of some lower level objects,
50// reference counting protects these from premature destruction.
51class RTCCertificate : public RefCountInterface {
52 public:
53 // Takes ownership of |identity|.
54 static scoped_refptr<RTCCertificate> Create(
55 std::unique_ptr<SSLIdentity> identity);
56
57 // Returns the expiration time in ms relative to epoch, 1970-01-01T00:00:00Z.
58 uint64_t Expires() const;
59 // Checks if the certificate has expired, where |now| is expressed in ms
60 // relative to epoch, 1970-01-01T00:00:00Z.
61 bool HasExpired(uint64_t now) const;
Benjamin Wright6c6c9df2018-10-25 01:16:26 -070062
63 const SSLCertificate& GetSSLCertificate() const;
64 const SSLCertChain& GetSSLCertificateChain() const;
65
66 // Deprecated: TODO(benwright) - Remove once chromium is updated.
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020067 const SSLCertificate& ssl_certificate() const;
68
69 // TODO(hbos): If possible, remove once RTCCertificate and its
Benjamin Wright6c6c9df2018-10-25 01:16:26 -070070 // GetSSLCertificate() is used in all relevant places. Should not pass around
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020071 // raw SSLIdentity* for the sake of accessing SSLIdentity::certificate().
72 // However, some places might need SSLIdentity* for its public/private key...
73 SSLIdentity* identity() const { return identity_.get(); }
74
75 // To/from PEM, a text representation of the RTCCertificate.
76 RTCCertificatePEM ToPEM() const;
77 // Can return nullptr if the certificate is invalid.
78 static scoped_refptr<RTCCertificate> FromPEM(const RTCCertificatePEM& pem);
79 bool operator==(const RTCCertificate& certificate) const;
80 bool operator!=(const RTCCertificate& certificate) const;
81
82 protected:
83 explicit RTCCertificate(SSLIdentity* identity);
84 ~RTCCertificate() override;
85
86 private:
87 // The SSLIdentity is the owner of the SSLCertificate. To protect our
Benjamin Wright6c6c9df2018-10-25 01:16:26 -070088 // GetSSLCertificate() we take ownership of |identity_|.
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020089 std::unique_ptr<SSLIdentity> identity_;
90};
91
92} // namespace rtc
Henrik Boström41b3a382015-08-20 12:15:54 +020093
Steve Anton10542f22019-01-11 09:11:00 -080094#endif // RTC_BASE_RTC_CERTIFICATE_H_