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

Side by Side Diff: crypto/ec_signature_creator.cc

Issue 9455006: Fix SpdySession::WriteCredentialFrame ECPrivateKey creation args. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: openssl fix Created 8 years, 10 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 | « crypto/ec_signature_creator.h ('k') | crypto/ec_signature_creator_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 #include "crypto/ec_signature_creator.h"
6
7 #include "crypto/ec_signature_creator_impl.h"
8
9 namespace crypto {
10
11 namespace {
12
13 ECSignatureCreatorFactory* g_factory_ = NULL;
14
15 } // namespace
16
17 // static
18 ECSignatureCreator* ECSignatureCreator::Create(ECPrivateKey* key) {
19 if (g_factory_)
20 return g_factory_->Create(key);
21 return new ECSignatureCreatorImpl(key);
22 }
23
24 // static
25 void ECSignatureCreator::SetFactoryForTesting(
26 ECSignatureCreatorFactory* factory) {
27 g_factory_ = factory;
28 }
29
30 } // namespace crypto
OLDNEW
« no previous file with comments | « crypto/ec_signature_creator.h ('k') | crypto/ec_signature_creator_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698