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

Side by Side Diff: net/ssl/openssl_client_key_store.h

Issue 13351006: net: move openssl and keygen from net/base to net/cert (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ssl it is Created 7 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/socket/ssl_client_socket_openssl_unittest.cc ('k') | net/ssl/openssl_client_key_store.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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_BASE_OPENSSL_CLIENT_KEY_STORE_H_ 5 #ifndef NET_SSL_OPENSSL_CLIENT_KEY_STORE_H_
6 #define NET_BASE_OPENSSL_CLIENT_KEY_STORE_H_ 6 #define NET_SSL_OPENSSL_CLIENT_KEY_STORE_H_
7 7
8 #include <openssl/evp.h> 8 #include <openssl/evp.h>
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/singleton.h" 14 #include "base/memory/singleton.h"
15 #include "crypto/openssl_util.h" 15 #include "crypto/openssl_util.h"
16 #include "net/base/net_export.h" 16 #include "net/base/net_export.h"
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 std::vector<KeyPair> pairs_; 99 std::vector<KeyPair> pairs_;
100 100
101 friend struct DefaultSingletonTraits<OpenSSLClientKeyStore>; 101 friend struct DefaultSingletonTraits<OpenSSLClientKeyStore>;
102 102
103 DISALLOW_COPY_AND_ASSIGN(OpenSSLClientKeyStore); 103 DISALLOW_COPY_AND_ASSIGN(OpenSSLClientKeyStore);
104 }; 104 };
105 105
106 } // namespace net 106 } // namespace net
107 107
108 #endif // NET_BASE_OPENSSL_CLIENT_KEY_STORE_H_ 108 #endif // NET_SSL_OPENSSL_CLIENT_KEY_STORE_H_
OLDNEW
« no previous file with comments | « net/socket/ssl_client_socket_openssl_unittest.cc ('k') | net/ssl/openssl_client_key_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698