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

Unified Diff: net/base/ssl_cert_request_info.h

Issue 12680003: net: split net/ssl out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/server_bound_cert_store.cc ('k') | net/base/ssl_cert_request_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/ssl_cert_request_info.h
diff --git a/net/base/ssl_cert_request_info.h b/net/base/ssl_cert_request_info.h
deleted file mode 100644
index e9e64deafe1dfe3ee20113d43e221491551d9127..0000000000000000000000000000000000000000
--- a/net/base/ssl_cert_request_info.h
+++ /dev/null
@@ -1,68 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NET_BASE_SSL_CERT_REQUEST_INFO_H_
-#define NET_BASE_SSL_CERT_REQUEST_INFO_H_
-
-#include <string>
-#include <vector>
-
-#include "base/memory/ref_counted.h"
-#include "net/base/net_export.h"
-#include "net/base/ssl_client_cert_type.h"
-
-namespace net {
-
-class X509Certificate;
-
-// The SSLCertRequestInfo class represents server criteria regarding client
-// certificate required for a secure connection.
-//
-// In TLS 1.1, the CertificateRequest
-// message is defined as:
-// enum {
-// rsa_sign(1), dss_sign(2), rsa_fixed_dh(3), dss_fixed_dh(4),
-// rsa_ephemeral_dh_RESERVED(5), dss_ephemeral_dh_RESERVED(6),
-// fortezza_dms_RESERVED(20), (255)
-// } ClientCertificateType;
-//
-// opaque DistinguishedName<1..2^16-1>;
-//
-// struct {
-// ClientCertificateType certificate_types<1..2^8-1>;
-// DistinguishedName certificate_authorities<3..2^16-1>;
-// } CertificateRequest;
-class NET_EXPORT SSLCertRequestInfo
- : public base::RefCountedThreadSafe<SSLCertRequestInfo> {
- public:
- SSLCertRequestInfo();
-
- void Reset();
-
- // The host and port of the SSL server that requested client authentication.
- std::string host_and_port;
-
- // True if the server that issues this request was the HTTPS proxy used in
- // the request. False, if the server was the origin server.
- bool is_proxy;
-
- // List of DER-encoded X.509 DistinguishedName of certificate authorities
- // allowed by the server.
- std::vector<std::string> cert_authorities;
-
- std::vector<SSLClientCertType> cert_key_types;
-
- // Client certificates matching the server criteria. This should be removed
- // soon as being tracked in http://crbug.com/166642.
- std::vector<scoped_refptr<X509Certificate> > client_certs;
-
- private:
- friend class base::RefCountedThreadSafe<SSLCertRequestInfo>;
-
- ~SSLCertRequestInfo();
-};
-
-} // namespace net
-
-#endif // NET_BASE_SSL_CERT_REQUEST_INFO_H_
« no previous file with comments | « net/base/server_bound_cert_store.cc ('k') | net/base/ssl_cert_request_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698