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

Side by Side Diff: third_party/lzma_sdk/C/Sha256.h

Issue 6730044: Upgrading lzma_sdk to version 9.20. Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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
« no previous file with comments | « third_party/lzma_sdk/C/RotateDefs.h ('k') | third_party/lzma_sdk/C/Sha256.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /* Sha256.h -- SHA-256 Hash
2 2010-06-11 : Igor Pavlov : Public domain */
3
4 #ifndef __CRYPTO_SHA256_H
5 #define __CRYPTO_SHA256_H
6
7 #include "Types.h"
8
9 EXTERN_C_BEGIN
10
11 #define SHA256_DIGEST_SIZE 32
12
13 typedef struct
14 {
15 UInt32 state[8];
16 UInt64 count;
17 Byte buffer[64];
18 } CSha256;
19
20 void Sha256_Init(CSha256 *p);
21 void Sha256_Update(CSha256 *p, const Byte *data, size_t size);
22 void Sha256_Final(CSha256 *p, Byte *digest);
23
24 EXTERN_C_END
25
26 #endif
OLDNEW
« no previous file with comments | « third_party/lzma_sdk/C/RotateDefs.h ('k') | third_party/lzma_sdk/C/Sha256.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698