OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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_CLIENT_SOCKET_NSS_H_ | 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_ |
6 #define NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_ | 6 #define NET_SOCKET_SSL_CLIENT_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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback); | 55 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback); |
56 virtual bool SetReceiveBufferSize(int32 size); | 56 virtual bool SetReceiveBufferSize(int32 size); |
57 virtual bool SetSendBufferSize(int32 size); | 57 virtual bool SetSendBufferSize(int32 size); |
58 | 58 |
59 private: | 59 private: |
60 // Initializes NSS SSL options. Returns a net error code. | 60 // Initializes NSS SSL options. Returns a net error code. |
61 int InitializeSSLOptions(); | 61 int InitializeSSLOptions(); |
62 | 62 |
63 void InvalidateSessionIfBadCertificate(); | 63 void InvalidateSessionIfBadCertificate(); |
64 X509Certificate* UpdateServerCert(); | 64 X509Certificate* UpdateServerCert(); |
| 65 void CheckSecureRenegotiation() const; |
65 void DoReadCallback(int result); | 66 void DoReadCallback(int result); |
66 void DoWriteCallback(int result); | 67 void DoWriteCallback(int result); |
67 void DoConnectCallback(int result); | 68 void DoConnectCallback(int result); |
68 void OnHandshakeIOComplete(int result); | 69 void OnHandshakeIOComplete(int result); |
69 void OnSendComplete(int result); | 70 void OnSendComplete(int result); |
70 void OnRecvComplete(int result); | 71 void OnRecvComplete(int result); |
71 | 72 |
72 int DoHandshakeLoop(int last_io_result); | 73 int DoHandshakeLoop(int last_io_result); |
73 int DoReadLoop(int result); | 74 int DoReadLoop(int result); |
74 int DoWriteLoop(int result); | 75 int DoWriteLoop(int result); |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 // A CryptoAPI in-memory certificate store that we import server | 160 // A CryptoAPI in-memory certificate store that we import server |
160 // certificates into so that we can verify and display the certificates | 161 // certificates into so that we can verify and display the certificates |
161 // using CryptoAPI. | 162 // using CryptoAPI. |
162 static HCERTSTORE cert_store_; | 163 static HCERTSTORE cert_store_; |
163 #endif | 164 #endif |
164 }; | 165 }; |
165 | 166 |
166 } // namespace net | 167 } // namespace net |
167 | 168 |
168 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_ | 169 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_ |
OLD | NEW |