Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Side by Side Diff: net/http/http_network_transaction_unittest.cc

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: remove "httpsv" scheme, minor NSS/OpenSSL changes Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/http/http_network_transaction.cc ('k') | net/http/http_proxy_client_socket_pool.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « net/http/http_network_transaction.cc ('k') | net/http/http_proxy_client_socket_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698