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

Side by Side Diff: openssl/ssl/fnv1a64.h

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « openssl/ssl/dtls1.h ('k') | openssl/ssl/fnv1a64.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* ssl/fnv1a64.h */
2
3 /* Open sourcing FIXME: include correct copyright header here. */
4
5 /* Fowler-Noll-Vo (FNV) hash: http://isthe.com/chongo/tech/comp/fnv/ */
6
7 #ifndef HEADER_FNV1A64_H
8 #define HEADER_FNV1A64_H
9
10 #include <stdint.h>
11
12 typedef uint64_t FNV1A64;
13
14 void fnv1a64_init(FNV1A64* ctx);
15 void fnv1a64_update(FNV1A64* ctx, const void* data, unsigned int length);
16 void fnv1a64_final(unsigned char out[8], const FNV1A64 *ctx);
17
18 #endif // HEADER_FNV1A64_H
OLDNEW
« no previous file with comments | « openssl/ssl/dtls1.h ('k') | openssl/ssl/fnv1a64.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698