[email protected] | 3b63f8f4 | 2011-03-28 01:54:15 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
[email protected] | 4b559b4d | 2011-04-14 17:37:14 | [diff] [blame] | 5 | #include "crypto/signature_creator.h" |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 6 | |
| 7 | #include <stdlib.h> |
| 8 | |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 9 | #include "base/logging.h" |
[email protected] | 3b63f8f4 | 2011-03-28 01:54:15 | [diff] [blame] | 10 | #include "base/memory/scoped_ptr.h" |
[email protected] | 4b559b4d | 2011-04-14 17:37:14 | [diff] [blame] | 11 | #include "crypto/cssm_init.h" |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 12 | |
[email protected] | 4b559b4d | 2011-04-14 17:37:14 | [diff] [blame] | 13 | namespace crypto { |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 14 | |
| 15 | // static |
| 16 | SignatureCreator* SignatureCreator::Create(RSAPrivateKey* key) { |
| 17 | scoped_ptr<SignatureCreator> result(new SignatureCreator); |
| 18 | result->key_ = key; |
| 19 | |
| 20 | CSSM_RETURN crtn; |
[email protected] | 10811823 | 2010-03-29 18:22:24 | [diff] [blame] | 21 | crtn = CSSM_CSP_CreateSignatureContext(GetSharedCSPHandle(), |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 22 | CSSM_ALGID_SHA1WithRSA, |
| 23 | NULL, |
| 24 | key->key(), |
| 25 | &result->sig_handle_); |
| 26 | if (crtn) { |
| 27 | NOTREACHED(); |
| 28 | return NULL; |
| 29 | } |
| 30 | |
| 31 | crtn = CSSM_SignDataInit(result->sig_handle_); |
| 32 | if (crtn) { |
| 33 | NOTREACHED(); |
[email protected] | 227fcee | 2010-06-11 19:19:37 | [diff] [blame] | 34 | return NULL; |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | return result.release(); |
| 38 | } |
| 39 | |
[email protected] | 41eee1e | 2011-06-22 20:18:47 | [diff] [blame] | 40 | SignatureCreator::SignatureCreator() : key_(NULL), sig_handle_(0) { |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 41 | EnsureCSSMInit(); |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | SignatureCreator::~SignatureCreator() { |
| 45 | CSSM_RETURN crtn; |
| 46 | if (sig_handle_) { |
| 47 | crtn = CSSM_DeleteContext(sig_handle_); |
[email protected] | 5e0be64 | 2011-04-28 18:20:09 | [diff] [blame] | 48 | DCHECK_EQ(CSSM_OK, crtn); |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 49 | } |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | bool SignatureCreator::Update(const uint8* data_part, int data_part_len) { |
| 53 | CSSM_DATA data; |
| 54 | data.Data = const_cast<uint8*>(data_part); |
| 55 | data.Length = data_part_len; |
| 56 | CSSM_RETURN crtn = CSSM_SignDataUpdate(sig_handle_, &data, 1); |
[email protected] | 5e0be64 | 2011-04-28 18:20:09 | [diff] [blame] | 57 | DCHECK_EQ(CSSM_OK, crtn); |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 58 | return true; |
| 59 | } |
| 60 | |
| 61 | bool SignatureCreator::Final(std::vector<uint8>* signature) { |
[email protected] | eed0011 | 2011-02-08 14:28:29 | [diff] [blame] | 62 | ScopedCSSMData sig; |
| 63 | CSSM_RETURN crtn = CSSM_SignDataFinal(sig_handle_, sig); |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 64 | |
| 65 | if (crtn) { |
| 66 | NOTREACHED(); |
| 67 | return false; |
| 68 | } |
| 69 | |
[email protected] | eed0011 | 2011-02-08 14:28:29 | [diff] [blame] | 70 | signature->assign(sig->Data, sig->Data + sig->Length); |
[email protected] | e90ed8a | 2009-10-06 18:55:35 | [diff] [blame] | 71 | return true; |
| 72 | } |
| 73 | |
[email protected] | 4b559b4d | 2011-04-14 17:37:14 | [diff] [blame] | 74 | } // namespace crypto |