blob: e46d3d002c1b24eddc94729290d6c9a3c50fb51f [file] [log] [blame]
[email protected]5ee44d42012-02-08 00:14:541// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]70372d42010-10-22 13:12:342// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]4b559b4d2011-04-14 17:37:145#include "crypto/signature_creator.h"
[email protected]70372d42010-10-22 13:12:346
[email protected]be796bb2010-11-18 15:43:437#include <openssl/evp.h>
[email protected]ed31834b2013-07-09 08:32:408#include <openssl/rsa.h>
[email protected]be796bb2010-11-18 15:43:439
[email protected]70372d42010-10-22 13:12:3410#include "base/logging.h"
[email protected]3b63f8f42011-03-28 01:54:1511#include "base/memory/scoped_ptr.h"
[email protected]7286e3fc2011-07-19 22:13:2412#include "base/stl_util.h"
[email protected]4b559b4d2011-04-14 17:37:1413#include "crypto/openssl_util.h"
[email protected]5ee44d42012-02-08 00:14:5414#include "crypto/rsa_private_key.h"
[email protected]70372d42010-10-22 13:12:3415
[email protected]4b559b4d2011-04-14 17:37:1416namespace crypto {
[email protected]70372d42010-10-22 13:12:3417
18// static
19SignatureCreator* SignatureCreator::Create(RSAPrivateKey* key) {
[email protected]be796bb2010-11-18 15:43:4320 OpenSSLErrStackTracer err_tracer(FROM_HERE);
21 scoped_ptr<SignatureCreator> result(new SignatureCreator);
22 result->key_ = key;
23 if (!EVP_SignInit_ex(result->sign_context_, EVP_sha1(), NULL))
24 return NULL;
25 return result.release();
[email protected]70372d42010-10-22 13:12:3426}
27
[email protected]ed31834b2013-07-09 08:32:4028// static
29bool SignatureCreator::Sign(RSAPrivateKey* key,
30 const uint8* data,
31 int data_len,
32 std::vector<uint8>* signature) {
33 RSA* rsa_key = EVP_PKEY_get1_RSA(key->key());
34 if (!rsa_key)
35 return false;
36 signature->resize(RSA_size(rsa_key));
37
38 unsigned int len = 0;
39 bool success = RSA_sign(NID_sha1, data, data_len, vector_as_array(signature),
40 &len, rsa_key);
41 if (!success) {
42 signature->clear();
43 return false;
44 }
45 signature->resize(len);
46 return true;
47}
48
[email protected]be796bb2010-11-18 15:43:4349SignatureCreator::SignatureCreator()
50 : sign_context_(EVP_MD_CTX_create()) {
[email protected]70372d42010-10-22 13:12:3451}
52
53SignatureCreator::~SignatureCreator() {
[email protected]be796bb2010-11-18 15:43:4354 EVP_MD_CTX_destroy(sign_context_);
[email protected]70372d42010-10-22 13:12:3455}
56
57bool SignatureCreator::Update(const uint8* data_part, int data_part_len) {
[email protected]be796bb2010-11-18 15:43:4358 OpenSSLErrStackTracer err_tracer(FROM_HERE);
59 return EVP_SignUpdate(sign_context_, data_part, data_part_len) == 1;
[email protected]70372d42010-10-22 13:12:3460}
61
62bool SignatureCreator::Final(std::vector<uint8>* signature) {
[email protected]be796bb2010-11-18 15:43:4363 OpenSSLErrStackTracer err_tracer(FROM_HERE);
64 EVP_PKEY* key = key_->key();
65 signature->resize(EVP_PKEY_size(key));
66
67 unsigned int len = 0;
[email protected]70be9242010-12-14 13:55:4468 int rv = EVP_SignFinal(sign_context_, vector_as_array(signature), &len, key);
[email protected]be796bb2010-11-18 15:43:4369 if (!rv) {
70 signature->clear();
71 return false;
72 }
73 signature->resize(len);
74 return true;
[email protected]70372d42010-10-22 13:12:3475}
76
[email protected]4b559b4d2011-04-14 17:37:1477} // namespace crypto