| OLD | NEW |
| 1 // TODO(sqs): add TLS-SRP unit tests to this file |
| 2 |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 3 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 4 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 5 // found in the LICENSE file. |
| 4 | 6 |
| 5 #include "net/http/http_network_transaction.h" | 7 #include "net/http/http_network_transaction.h" |
| 6 | 8 |
| 7 #include <math.h> // ceil | 9 #include <math.h> // ceil |
| 8 #include <vector> | 10 #include <vector> |
| 9 | 11 |
| 10 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| (...skipping 8566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8577 // Now that the new handshake has failed, ensure that the client | 8579 // Now that the new handshake has failed, ensure that the client |
| 8578 // certificate was removed from the client auth cache. | 8580 // certificate was removed from the client auth cache. |
| 8579 ASSERT_FALSE(session->ssl_client_auth_cache()->Lookup("proxy:70", | 8581 ASSERT_FALSE(session->ssl_client_auth_cache()->Lookup("proxy:70", |
| 8580 &client_cert)); | 8582 &client_cert)); |
| 8581 ASSERT_FALSE(session->ssl_client_auth_cache()->Lookup("www.example.com:443", | 8583 ASSERT_FALSE(session->ssl_client_auth_cache()->Lookup("www.example.com:443", |
| 8582 &client_cert)); | 8584 &client_cert)); |
| 8583 } | 8585 } |
| 8584 } | 8586 } |
| 8585 | 8587 |
| 8586 } // namespace net | 8588 } // namespace net |
| OLD | NEW |