| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CRYPTO_SIGNATURE_CREATOR_H_ | 5 #ifndef CRYPTO_SIGNATURE_CREATOR_H_ |
| 6 #define CRYPTO_SIGNATURE_CREATOR_H_ | 6 #define CRYPTO_SIGNATURE_CREATOR_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "crypto/crypto_export.h" | 12 #include "crypto/crypto_export.h" |
| 13 | 13 |
| 14 #if defined(USE_OPENSSL) | 14 #if defined(USE_OPENSSL) |
| 15 // Forward declaration for openssl/*.h | 15 // Forward declaration for openssl/*.h |
| 16 typedef struct env_md_ctx_st EVP_MD_CTX; | 16 typedef struct env_md_ctx_st EVP_MD_CTX; |
| 17 #elif defined(USE_NSS) || defined(OS_WIN) || defined(OS_MACOSX) | 17 #elif defined(USE_NSS_CERTS) || defined(OS_WIN) || defined(OS_MACOSX) |
| 18 // Forward declaration. | 18 // Forward declaration. |
| 19 struct SGNContextStr; | 19 struct SGNContextStr; |
| 20 #endif | 20 #endif |
| 21 | 21 |
| 22 namespace crypto { | 22 namespace crypto { |
| 23 | 23 |
| 24 class RSAPrivateKey; | 24 class RSAPrivateKey; |
| 25 | 25 |
| 26 // Signs data using a bare private key (as opposed to a full certificate). | 26 // Signs data using a bare private key (as opposed to a full certificate). |
| 27 // Currently can only sign data using SHA-1 or SHA-256 with RSA PKCS#1v1.5. | 27 // Currently can only sign data using SHA-1 or SHA-256 with RSA PKCS#1v1.5. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 54 | 54 |
| 55 // Finalize the signature. | 55 // Finalize the signature. |
| 56 bool Final(std::vector<uint8>* signature); | 56 bool Final(std::vector<uint8>* signature); |
| 57 | 57 |
| 58 private: | 58 private: |
| 59 // Private constructor. Use the Create() method instead. | 59 // Private constructor. Use the Create() method instead. |
| 60 SignatureCreator(); | 60 SignatureCreator(); |
| 61 | 61 |
| 62 #if defined(USE_OPENSSL) | 62 #if defined(USE_OPENSSL) |
| 63 EVP_MD_CTX* sign_context_; | 63 EVP_MD_CTX* sign_context_; |
| 64 #elif defined(USE_NSS) || defined(OS_WIN) || defined(OS_MACOSX) | 64 #elif defined(USE_NSS_CERTS) || defined(OS_WIN) || defined(OS_MACOSX) |
| 65 SGNContextStr* sign_context_; | 65 SGNContextStr* sign_context_; |
| 66 #endif | 66 #endif |
| 67 | 67 |
| 68 DISALLOW_COPY_AND_ASSIGN(SignatureCreator); | 68 DISALLOW_COPY_AND_ASSIGN(SignatureCreator); |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace crypto | 71 } // namespace crypto |
| 72 | 72 |
| 73 #endif // CRYPTO_SIGNATURE_CREATOR_H_ | 73 #endif // CRYPTO_SIGNATURE_CREATOR_H_ |
| OLD | NEW |