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 /* SHA-1, 256 and 512 functions. */ | 6 /* SHA-1, 256 and 512 functions. */ |
7 | 7 |
8 #ifndef VBOOT_REFERENCE_SHA_H_ | 8 #ifndef VBOOT_REFERENCE_SHA_H_ |
9 #define VBOOT_REFERENCE_SHA_H_ | 9 #define VBOOT_REFERENCE_SHA_H_ |
10 | 10 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 uint32_t tot_len; | 46 uint32_t tot_len; |
47 uint32_t len; | 47 uint32_t len; |
48 uint8_t block[2 * SHA512_BLOCK_SIZE]; | 48 uint8_t block[2 * SHA512_BLOCK_SIZE]; |
49 uint8_t buf[SHA512_DIGEST_SIZE]; /* Used for storing the final digest. */ | 49 uint8_t buf[SHA512_DIGEST_SIZE]; /* Used for storing the final digest. */ |
50 } SHA512_CTX; | 50 } SHA512_CTX; |
51 | 51 |
52 | 52 |
53 void SHA1_init(SHA1_CTX* ctx); | 53 void SHA1_init(SHA1_CTX* ctx); |
54 void SHA1_update(SHA1_CTX* ctx, const uint8_t* data, int len); | 54 void SHA1_update(SHA1_CTX* ctx, const uint8_t* data, int len); |
55 uint8_t* SHA1_final(SHA1_CTX* ctx); | 55 uint8_t* SHA1_final(SHA1_CTX* ctx); |
| 56 |
| 57 void SHA256_init(SHA256_CTX* ctx); |
| 58 void SHA256_update(SHA256_CTX* ctx, const uint8_t* data, int len); |
| 59 uint8_t* SHA256_final(SHA256_CTX* ctx); |
| 60 |
| 61 void SHA512_init(SHA512_CTX* ctx); |
| 62 void SHA512_update(SHA512_CTX* ctx, const uint8_t* data, int len); |
| 63 uint8_t* SHA512_final(SHA512_CTX* ctx); |
| 64 |
56 /* Convenience function for SHA-1. Computes hash on [data] of length [len]. | 65 /* Convenience function for SHA-1. Computes hash on [data] of length [len]. |
57 * and stores it into [digest]. [digest] should be pre-allocated to | 66 * and stores it into [digest]. [digest] should be pre-allocated to |
58 * SHA1_DIGEST_SIZE bytes. | 67 * SHA1_DIGEST_SIZE bytes. |
59 */ | 68 */ |
60 uint8_t* SHA1(const void* data, int len, uint8_t* digest); | 69 uint8_t* SHA1(const void* data, int len, uint8_t* digest); |
61 | 70 |
62 void SHA256_init(SHA256_CTX* ctx); | 71 /* Convenience function for SHA-256. Computes hash on [data] of length [len]. |
63 void SHA256_update(SHA256_CTX* ctx, const uint8_t* data, int len); | 72 * and stores it into [digest]. [digest] should be pre-allocated to |
64 uint8_t* SHA256_final(SHA256_CTX* ctx); | 73 * SHA256_DIGEST_SIZE bytes. |
| 74 */ |
65 uint8_t* SHA256(const uint8_t* data, int len, uint8_t* digest); | 75 uint8_t* SHA256(const uint8_t* data, int len, uint8_t* digest); |
66 | 76 |
67 void SHA512_init(SHA512_CTX* ctx); | 77 /* Convenience function for SHA-512. Computes hash on [data] of length [len]. |
68 void SHA512_update(SHA512_CTX* ctx, const uint8_t* data, int len); | 78 * and stores it into [digest]. [digest] should be pre-allocated to |
69 uint8_t* SHA512_final(SHA512_CTX* ctx); | 79 * SHA512_DIGEST_SIZE bytes. |
| 80 */ |
70 uint8_t* SHA512(const uint8_t* data, int len, uint8_t* digest); | 81 uint8_t* SHA512(const uint8_t* data, int len, uint8_t* digest); |
71 | 82 |
72 | 83 |
73 #endif /* VBOOT_REFERENCE_SHA_H_ */ | 84 #endif /* VBOOT_REFERENCE_SHA_H_ */ |
OLD | NEW |