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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 size_t* written, | 85 size_t* written, |
86 int* error) override; | 86 int* error) override; |
87 void Close() override; | 87 void Close() override; |
88 StreamState GetState() const override; | 88 StreamState GetState() const override; |
89 | 89 |
90 // TODO(guoweis): Move this away from a static class method. | 90 // TODO(guoweis): Move this away from a static class method. |
91 static std::string SslCipherSuiteToName(int crypto_suite); | 91 static std::string SslCipherSuiteToName(int crypto_suite); |
92 | 92 |
93 bool GetSslCipherSuite(int* cipher) override; | 93 bool GetSslCipherSuite(int* cipher) override; |
94 | 94 |
| 95 int GetSslVersion() const override; |
| 96 |
95 // Key Extractor interface | 97 // Key Extractor interface |
96 bool ExportKeyingMaterial(const std::string& label, | 98 bool ExportKeyingMaterial(const std::string& label, |
97 const uint8_t* context, | 99 const uint8_t* context, |
98 size_t context_len, | 100 size_t context_len, |
99 bool use_context, | 101 bool use_context, |
100 uint8_t* result, | 102 uint8_t* result, |
101 size_t result_len) override; | 103 size_t result_len) override; |
102 | 104 |
103 // DTLS-SRTP interface | 105 // DTLS-SRTP interface |
104 bool SetDtlsSrtpCryptoSuites(const std::vector<int>& crypto_suites) override; | 106 bool SetDtlsSrtpCryptoSuites(const std::vector<int>& crypto_suites) override; |
105 bool GetDtlsSrtpCryptoSuite(int* crypto_suite) override; | 107 bool GetDtlsSrtpCryptoSuite(int* crypto_suite) override; |
106 | 108 |
107 // Capabilities interfaces | 109 // Capabilities interfaces |
108 static bool HaveDtls(); | 110 static bool HaveDtls(); |
109 static bool HaveDtlsSrtp(); | 111 static bool HaveDtlsSrtp(); |
110 static bool HaveExporter(); | 112 static bool HaveExporter(); |
111 | 113 |
112 // TODO(guoweis): Move this away from a static class method. | 114 static bool IsAcceptableCipher(int cipher, KeyType key_type); |
113 static int GetDefaultSslCipherForTest(SSLProtocolVersion version, | 115 static bool IsAcceptableCipher(const std::string& cipher, KeyType key_type); |
114 KeyType key_type); | |
115 | 116 |
116 protected: | 117 protected: |
117 void OnEvent(StreamInterface* stream, int events, int err) override; | 118 void OnEvent(StreamInterface* stream, int events, int err) override; |
118 | 119 |
119 private: | 120 private: |
120 enum SSLState { | 121 enum SSLState { |
121 // Before calling one of the StartSSL methods, data flows | 122 // Before calling one of the StartSSL methods, data flows |
122 // in clear text. | 123 // in clear text. |
123 SSL_NONE, | 124 SSL_NONE, |
124 SSL_WAIT, // waiting for the stream to open to start SSL negotiation | 125 SSL_WAIT, // waiting for the stream to open to start SSL negotiation |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 | 207 |
207 // Max. allowed protocol version | 208 // Max. allowed protocol version |
208 SSLProtocolVersion ssl_max_version_; | 209 SSLProtocolVersion ssl_max_version_; |
209 }; | 210 }; |
210 | 211 |
211 ///////////////////////////////////////////////////////////////////////////// | 212 ///////////////////////////////////////////////////////////////////////////// |
212 | 213 |
213 } // namespace rtc | 214 } // namespace rtc |
214 | 215 |
215 #endif // WEBRTC_BASE_OPENSSLSTREAMADAPTER_H__ | 216 #endif // WEBRTC_BASE_OPENSSLSTREAMADAPTER_H__ |
OLD | NEW |