OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 namespace rtc { | 25 namespace rtc { |
26 | 26 |
27 // OpenSSLKeyPair encapsulates an OpenSSL EVP_PKEY* keypair object, | 27 // OpenSSLKeyPair encapsulates an OpenSSL EVP_PKEY* keypair object, |
28 // which is reference counted inside the OpenSSL library. | 28 // which is reference counted inside the OpenSSL library. |
29 class OpenSSLKeyPair { | 29 class OpenSSLKeyPair { |
30 public: | 30 public: |
31 explicit OpenSSLKeyPair(EVP_PKEY* pkey) : pkey_(pkey) { | 31 explicit OpenSSLKeyPair(EVP_PKEY* pkey) : pkey_(pkey) { |
32 ASSERT(pkey_ != NULL); | 32 ASSERT(pkey_ != NULL); |
33 } | 33 } |
34 | 34 |
35 static OpenSSLKeyPair* Generate(KeyType key_type); | 35 static OpenSSLKeyPair* Generate(const KeyParams& key_params); |
36 | 36 |
37 virtual ~OpenSSLKeyPair(); | 37 virtual ~OpenSSLKeyPair(); |
38 | 38 |
39 virtual OpenSSLKeyPair* GetReference(); | 39 virtual OpenSSLKeyPair* GetReference(); |
40 | 40 |
41 EVP_PKEY* pkey() const { return pkey_; } | 41 EVP_PKEY* pkey() const { return pkey_; } |
42 | 42 |
43 private: | 43 private: |
44 void AddReference(); | 44 void AddReference(); |
45 | 45 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 X509* x509_; | 93 X509* x509_; |
94 | 94 |
95 RTC_DISALLOW_COPY_AND_ASSIGN(OpenSSLCertificate); | 95 RTC_DISALLOW_COPY_AND_ASSIGN(OpenSSLCertificate); |
96 }; | 96 }; |
97 | 97 |
98 // Holds a keypair and certificate together, and a method to generate | 98 // Holds a keypair and certificate together, and a method to generate |
99 // them consistently. | 99 // them consistently. |
100 class OpenSSLIdentity : public SSLIdentity { | 100 class OpenSSLIdentity : public SSLIdentity { |
101 public: | 101 public: |
102 static OpenSSLIdentity* Generate(const std::string& common_name, | 102 static OpenSSLIdentity* Generate(const std::string& common_name, |
103 KeyType key_type); | 103 const KeyParams& key_params); |
104 static OpenSSLIdentity* GenerateForTest(const SSLIdentityParams& params); | 104 static OpenSSLIdentity* GenerateForTest(const SSLIdentityParams& params); |
105 static SSLIdentity* FromPEMStrings(const std::string& private_key, | 105 static SSLIdentity* FromPEMStrings(const std::string& private_key, |
106 const std::string& certificate); | 106 const std::string& certificate); |
107 ~OpenSSLIdentity() override; | 107 ~OpenSSLIdentity() override; |
108 | 108 |
109 const OpenSSLCertificate& certificate() const override; | 109 const OpenSSLCertificate& certificate() const override; |
110 OpenSSLIdentity* GetReference() const override; | 110 OpenSSLIdentity* GetReference() const override; |
111 | 111 |
112 // Configure an SSL context object to use our key and certificate. | 112 // Configure an SSL context object to use our key and certificate. |
113 bool ConfigureIdentity(SSL_CTX* ctx); | 113 bool ConfigureIdentity(SSL_CTX* ctx); |
114 | 114 |
115 private: | 115 private: |
116 OpenSSLIdentity(OpenSSLKeyPair* key_pair, OpenSSLCertificate* certificate); | 116 OpenSSLIdentity(OpenSSLKeyPair* key_pair, OpenSSLCertificate* certificate); |
117 | 117 |
118 static OpenSSLIdentity* GenerateInternal(const SSLIdentityParams& params); | 118 static OpenSSLIdentity* GenerateInternal(const SSLIdentityParams& params); |
119 | 119 |
120 scoped_ptr<OpenSSLKeyPair> key_pair_; | 120 scoped_ptr<OpenSSLKeyPair> key_pair_; |
121 scoped_ptr<OpenSSLCertificate> certificate_; | 121 scoped_ptr<OpenSSLCertificate> certificate_; |
122 | 122 |
123 RTC_DISALLOW_COPY_AND_ASSIGN(OpenSSLIdentity); | 123 RTC_DISALLOW_COPY_AND_ASSIGN(OpenSSLIdentity); |
124 }; | 124 }; |
125 | 125 |
126 | 126 |
127 } // namespace rtc | 127 } // namespace rtc |
128 | 128 |
129 #endif // WEBRTC_BASE_OPENSSLIDENTITY_H_ | 129 #endif // WEBRTC_BASE_OPENSSLIDENTITY_H_ |
OLD | NEW |