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

Unified Diff: nss/lib/freebl/sha512.c

Issue 16132005: Allow NSS to be built with NO_NSPR_10_SUPPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « nss/lib/freebl/rsa.c ('k') | nss/lib/freebl/sha_fast.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/freebl/sha512.c
===================================================================
--- nss/lib/freebl/sha512.c (revision 203524)
+++ nss/lib/freebl/sha512.c (working copy)
@@ -492,7 +492,7 @@
SECStatus
SHA256_HashBuf(unsigned char *dest, const unsigned char *src,
- uint32 src_length)
+ PRUint32 src_length)
{
SHA256Context ctx;
unsigned int outLen;
@@ -594,7 +594,7 @@
SECStatus
SHA224_HashBuf(unsigned char *dest, const unsigned char *src,
- uint32 src_length)
+ PRUint32 src_length)
{
SHA256Context ctx;
unsigned int outLen;
@@ -1296,7 +1296,7 @@
SECStatus
SHA512_HashBuf(unsigned char *dest, const unsigned char *src,
- uint32 src_length)
+ PRUint32 src_length)
{
SHA512Context ctx;
unsigned int outLen;
@@ -1412,7 +1412,7 @@
SECStatus
SHA384_HashBuf(unsigned char *dest, const unsigned char *src,
- uint32 src_length)
+ PRUint32 src_length)
{
SHA512Context ctx;
unsigned int outLen;
« no previous file with comments | « nss/lib/freebl/rsa.c ('k') | nss/lib/freebl/sha_fast.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698