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 "base/logging.h"
8 #include "crypto/ec_signature_creator_impl.h"
14 ECSignatureCreatorFactory
* g_factory_
= NULL
;
19 ECSignatureCreator
* ECSignatureCreator::Create(ECPrivateKey
* key
) {
21 return g_factory_
->Create(key
);
22 return new ECSignatureCreatorImpl(key
);
26 void ECSignatureCreator::SetFactoryForTesting(
27 ECSignatureCreatorFactory
* factory
) {
28 // We should always clear the factory after each test to avoid
29 // use-after-free problems.
30 DCHECK(!g_factory_
|| !factory
);