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

Side by Side Diff: net/base/ssl_cert_request_info.h

Issue 118039: Implement SSL client authentication for Windows.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin Created 11 years, 6 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/base/socket_test_util.cc ('k') | net/base/ssl_client_socket.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_BASE_SSL_CERT_REQUEST_INFO_H_
6 #define NET_BASE_SSL_CERT_REQUEST_INFO_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "base/ref_counted.h"
12
13 namespace net {
14
15 class X509Certificate;
16
17 // The SSLCertRequestInfo class contains the info that allows a user to
18 // select a certificate to send to the SSL server for client authentication.
19 class SSLCertRequestInfo
20 : public base::RefCountedThreadSafe<SSLCertRequestInfo> {
21 public:
22 // The host and port of the SSL server that requested client authentication.
23 std::string host_and_port;
24
25 // A list of client certificates that match the server's criteria in the
26 // SSL CertificateRequest message. In TLS 1.0, the CertificateRequest
27 // message is defined as:
28 // struct {
29 // ClientCertificateType certificate_types<1..2^8-1>;
30 // DistinguishedName certificate_authorities<3..2^16-1>;
31 // } CertificateRequest;
32 std::vector<scoped_refptr<X509Certificate> > client_certs;
33 };
34
35 } // namespace net
36
37 #endif // NET_BASE_SSL_CERT_REQUEST_INFO_H_
OLDNEW
« no previous file with comments | « net/base/socket_test_util.cc ('k') | net/base/ssl_client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698