Fix SpdySession::WriteCredentialFrame ECPrivateKey creation args.
[chromium-blink-merge.git] / crypto / ec_signature_creator.cc
blobcbaa820cec96001eb4ad79c3f33312db043920ec
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.
5 #include "crypto/ec_signature_creator.h"
7 #include "crypto/ec_signature_creator_impl.h"
9 namespace crypto {
11 namespace {
13 ECSignatureCreatorFactory* g_factory_ = NULL;
15 } // namespace
17 // static
18 ECSignatureCreator* ECSignatureCreator::Create(ECPrivateKey* key) {
19 if (g_factory_)
20 return g_factory_->Create(key);
21 return new ECSignatureCreatorImpl(key);
24 // static
25 void ECSignatureCreator::SetFactoryForTesting(
26 ECSignatureCreatorFactory* factory) {
27 g_factory_ = factory;
30 } // namespace crypto