| OLD | NEW |
| 1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 /* Copyright (c) 2010 The Chromium OS 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 | 5 |
| 6 #include "signature_digest.h" | 6 #include "signature_digest.h" |
| 7 #define OPENSSL_NO_SHA | 7 #define OPENSSL_NO_SHA |
| 8 #include <openssl/engine.h> | 8 #include <openssl/engine.h> |
| 9 #include <openssl/pem.h> | 9 #include <openssl/pem.h> |
| 10 #include <openssl/rsa.h> | 10 #include <openssl/rsa.h> |
| 11 | 11 |
| 12 #include <stdio.h> | 12 #include <stdio.h> |
| 13 #include <stdlib.h> | 13 #include <stdlib.h> |
| 14 #include <unistd.h> | 14 #include <unistd.h> |
| 15 | 15 |
| 16 #include "padding.h" | 16 #include "cryptolib.h" |
| 17 #include "sha.h" | |
| 18 #include "sha_utility.h" | |
| 19 #include "utility.h" | 17 #include "utility.h" |
| 20 | 18 |
| 21 uint8_t* PrependDigestInfo(int algorithm, uint8_t* digest) { | 19 uint8_t* PrependDigestInfo(int algorithm, uint8_t* digest) { |
| 22 const int digest_size = hash_size_map[algorithm]; | 20 const int digest_size = hash_size_map[algorithm]; |
| 23 const int digestinfo_size = digestinfo_size_map[algorithm]; | 21 const int digestinfo_size = digestinfo_size_map[algorithm]; |
| 24 const uint8_t* digestinfo = hash_digestinfo_map[algorithm]; | 22 const uint8_t* digestinfo = hash_digestinfo_map[algorithm]; |
| 25 uint8_t* p = Malloc(digestinfo_size + digest_size); | 23 uint8_t* p = Malloc(digestinfo_size + digest_size); |
| 26 Memcpy(p, digestinfo, digestinfo_size); | 24 Memcpy(p, digestinfo, digestinfo_size); |
| 27 Memcpy(p + digestinfo_size, digest, digest_size); | 25 Memcpy(p + digestinfo_size, digest, digest_size); |
| 28 return p; | 26 return p; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 key, /* Key to use. */ | 65 key, /* Key to use. */ |
| 68 RSA_PKCS1_PADDING)) /* Padding to use. */ | 66 RSA_PKCS1_PADDING)) /* Padding to use. */ |
| 69 fprintf(stderr, "SignatureBuf(): RSA_private_encrypt() failed.\n"); | 67 fprintf(stderr, "SignatureBuf(): RSA_private_encrypt() failed.\n"); |
| 70 } | 68 } |
| 71 fclose(key_fp); | 69 fclose(key_fp); |
| 72 if (key) | 70 if (key) |
| 73 RSA_free(key); | 71 RSA_free(key); |
| 74 Free(signature_digest); | 72 Free(signature_digest); |
| 75 return signature; | 73 return signature; |
| 76 } | 74 } |
| OLD | NEW |