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

Side by Side Diff: src/platform/vboot_reference/vboot_firmware/lib/cryptolib/include/sha.h

Issue 2219004: Rearrange vboot_reference directories to isolate external components. (Closed) Base URL: ssh://git@chromiumos-git/chromeos
Patch Set: Created 10 years, 7 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
OLDNEW
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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 uint8_t* DigestFile(char* input_file, int sig_algorithm); 119 uint8_t* DigestFile(char* input_file, int sig_algorithm);
120 120
121 /* Returns the appropriate digest of [buf] of length 121 /* Returns the appropriate digest of [buf] of length
122 * [len] based on the signature [algorithm]. 122 * [len] based on the signature [algorithm].
123 * Caller owns the returned digest and must free it. 123 * Caller owns the returned digest and must free it.
124 */ 124 */
125 uint8_t* DigestBuf(const uint8_t* buf, uint64_t len, int sig_algorithm); 125 uint8_t* DigestBuf(const uint8_t* buf, uint64_t len, int sig_algorithm);
126 126
127 127
128 #endif /* VBOOT_REFERENCE_SHA_H_ */ 128 #endif /* VBOOT_REFERENCE_SHA_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698