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

Side by Side Diff: net/cert/cert_verify_result.h

Issue 994743003: Support for client certs in ssl_server_socket. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Passing this CL to RyanChung for further work. Created 5 years, 1 month 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
« no previous file with comments | « no previous file | net/cert/mock_cert_verifier.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 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_CERT_CERT_VERIFY_RESULT_H_ 5 #ifndef NET_CERT_CERT_VERIFY_RESULT_H_
6 #define NET_CERT_CERT_VERIFY_RESULT_H_ 6 #define NET_CERT_CERT_VERIFY_RESULT_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 19 matching lines...) Expand all
30 } 30 }
31 31
32 // The certificate and chain that was constructed during verification. 32 // The certificate and chain that was constructed during verification.
33 // Note that the though the verified certificate will match the originally 33 // Note that the though the verified certificate will match the originally
34 // supplied certificate, the intermediate certificates stored within may 34 // supplied certificate, the intermediate certificates stored within may
35 // be substantially different. In the event of a verification failure, this 35 // be substantially different. In the event of a verification failure, this
36 // will contain the chain as supplied by the server. This may be NULL if 36 // will contain the chain as supplied by the server. This may be NULL if
37 // running within the sandbox. 37 // running within the sandbox.
38 scoped_refptr<X509Certificate> verified_cert; 38 scoped_refptr<X509Certificate> verified_cert;
39 39
40 // Bitmask of CERT_STATUS_* from net/base/cert_status_flags.h. Note that 40 // Bitmask of CERT_STATUS_* from net/cert/cert_status_flags.h. Note that
41 // these status flags apply to the certificate chain returned in 41 // these status flags apply to the certificate chain returned in
42 // |verified_cert|, rather than the originally supplied certificate 42 // |verified_cert|, rather than the originally supplied certificate
43 // chain. 43 // chain.
44 CertStatus cert_status; 44 CertStatus cert_status;
45 45
46 // Properties of the certificate chain. 46 // Properties of the certificate chain.
47 bool has_md2; 47 bool has_md2;
48 bool has_md4; 48 bool has_md4;
49 bool has_md5; 49 bool has_md5;
50 bool has_sha1; 50 bool has_sha1;
(...skipping 14 matching lines...) Expand all
65 bool is_issued_by_additional_trust_anchor; 65 bool is_issued_by_additional_trust_anchor;
66 66
67 // True if a fallback to the common name was used when matching the host 67 // True if a fallback to the common name was used when matching the host
68 // name, rather than using the subjectAltName. 68 // name, rather than using the subjectAltName.
69 bool common_name_fallback_used; 69 bool common_name_fallback_used;
70 }; 70 };
71 71
72 } // namespace net 72 } // namespace net
73 73
74 #endif // NET_CERT_CERT_VERIFY_RESULT_H_ 74 #endif // NET_CERT_CERT_VERIFY_RESULT_H_
OLDNEW
« no previous file with comments | « no previous file | net/cert/mock_cert_verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698