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

Side by Side Diff: crypto/signature_creator_openssl.cc

Issue 9348001: Use a forward declaration of RSAPrivateKey in crypto/signature_creator.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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/signature_creator_nss.cc ('k') | crypto/signature_creator_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "crypto/signature_creator.h" 5 #include "crypto/signature_creator.h"
6 6
7 #include <openssl/evp.h> 7 #include <openssl/evp.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/stl_util.h" 11 #include "base/stl_util.h"
12 #include "crypto/openssl_util.h" 12 #include "crypto/openssl_util.h"
13 #include "crypto/rsa_private_key.h"
13 14
14 namespace crypto { 15 namespace crypto {
15 16
16 // static 17 // static
17 SignatureCreator* SignatureCreator::Create(RSAPrivateKey* key) { 18 SignatureCreator* SignatureCreator::Create(RSAPrivateKey* key) {
18 OpenSSLErrStackTracer err_tracer(FROM_HERE); 19 OpenSSLErrStackTracer err_tracer(FROM_HERE);
19 scoped_ptr<SignatureCreator> result(new SignatureCreator); 20 scoped_ptr<SignatureCreator> result(new SignatureCreator);
20 result->key_ = key; 21 result->key_ = key;
21 if (!EVP_SignInit_ex(result->sign_context_, EVP_sha1(), NULL)) 22 if (!EVP_SignInit_ex(result->sign_context_, EVP_sha1(), NULL))
22 return NULL; 23 return NULL;
(...skipping 22 matching lines...) Expand all
45 int rv = EVP_SignFinal(sign_context_, vector_as_array(signature), &len, key); 46 int rv = EVP_SignFinal(sign_context_, vector_as_array(signature), &len, key);
46 if (!rv) { 47 if (!rv) {
47 signature->clear(); 48 signature->clear();
48 return false; 49 return false;
49 } 50 }
50 signature->resize(len); 51 signature->resize(len);
51 return true; 52 return true;
52 } 53 }
53 54
54 } // namespace crypto 55 } // namespace crypto
OLDNEW
« no previous file with comments | « crypto/signature_creator_nss.cc ('k') | crypto/signature_creator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698