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

Side by Side Diff: net/base/openssl_private_key_store_memory.cc

Issue 12220104: Wire up SSL client authentication for OpenSSL/Android through the net/ stack (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: address nits 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // Defines an in-memory private key store, primarily used for testing.
6
7 #include "net/base/openssl_private_key_store.h"
8
9 #include "base/logging.h"
10 #include "base/memory/singleton.h"
11 #include "base/synchronization/lock.h"
12 #include "net/base/x509_certificate.h"
13
14 namespace net {
15
16 bool OpenSSLPrivateKeyStore::StoreKeyPair(const GURL& url,
17 EVP_PKEY* pkey) {
18 // There is no key store here, so don't do anything.
19 return true;
20 }
21
22 } // namespace net
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698