OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_ | 5 #ifndef NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_ |
6 #define NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_ | 6 #define NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_ |
7 | 7 |
8 #include <certt.h> | 8 #include <certt.h> |
9 #include <keyt.h> | 9 #include <keyt.h> |
10 #include <nspr.h> | 10 #include <nspr.h> |
(...skipping 14 matching lines...) Expand all Loading... |
25 // See comments on CreateSSLServerSocket for details of how these | 25 // See comments on CreateSSLServerSocket for details of how these |
26 // parameters are used. | 26 // parameters are used. |
27 SSLServerSocketNSS(StreamSocket* socket, | 27 SSLServerSocketNSS(StreamSocket* socket, |
28 scoped_refptr<X509Certificate> certificate, | 28 scoped_refptr<X509Certificate> certificate, |
29 crypto::RSAPrivateKey* key, | 29 crypto::RSAPrivateKey* key, |
30 const SSLConfig& ssl_config); | 30 const SSLConfig& ssl_config); |
31 virtual ~SSLServerSocketNSS(); | 31 virtual ~SSLServerSocketNSS(); |
32 | 32 |
33 // SSLServerSocket interface. | 33 // SSLServerSocket interface. |
34 virtual int Handshake(const CompletionCallback& callback) OVERRIDE; | 34 virtual int Handshake(const CompletionCallback& callback) OVERRIDE; |
| 35 |
| 36 // SSLSocket interface. |
35 virtual int ExportKeyingMaterial(const base::StringPiece& label, | 37 virtual int ExportKeyingMaterial(const base::StringPiece& label, |
36 bool has_context, | 38 bool has_context, |
37 const base::StringPiece& context, | 39 const base::StringPiece& context, |
38 unsigned char* out, | 40 unsigned char* out, |
39 unsigned int outlen) OVERRIDE; | 41 unsigned int outlen) OVERRIDE; |
| 42 virtual int GetTLSUniqueChannelBinding(std::string* out) OVERRIDE; |
40 | 43 |
41 // Socket interface (via StreamSocket). | 44 // Socket interface (via StreamSocket). |
42 virtual int Read(IOBuffer* buf, int buf_len, | 45 virtual int Read(IOBuffer* buf, int buf_len, |
43 const CompletionCallback& callback) OVERRIDE; | 46 const CompletionCallback& callback) OVERRIDE; |
44 virtual int Write(IOBuffer* buf, int buf_len, | 47 virtual int Write(IOBuffer* buf, int buf_len, |
45 const CompletionCallback& callback) OVERRIDE; | 48 const CompletionCallback& callback) OVERRIDE; |
46 virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; | 49 virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; |
47 virtual bool SetSendBufferSize(int32 size) OVERRIDE; | 50 virtual bool SetSendBufferSize(int32 size) OVERRIDE; |
48 | 51 |
49 // StreamSocket implementation. | 52 // StreamSocket implementation. |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 | 143 |
141 State next_handshake_state_; | 144 State next_handshake_state_; |
142 bool completed_handshake_; | 145 bool completed_handshake_; |
143 | 146 |
144 DISALLOW_COPY_AND_ASSIGN(SSLServerSocketNSS); | 147 DISALLOW_COPY_AND_ASSIGN(SSLServerSocketNSS); |
145 }; | 148 }; |
146 | 149 |
147 } // namespace net | 150 } // namespace net |
148 | 151 |
149 #endif // NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_ | 152 #endif // NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_ |
OLD | NEW |