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

Unified Diff: mozilla/security/nss/lib/freebl/ecl/ecp_256_32.c

Issue 13327005: PK11_DecryptWithSymKey and PK11_EncryptWithSymKey have been (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 9 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
Index: mozilla/security/nss/lib/freebl/ecl/ecp_256_32.c
===================================================================
--- mozilla/security/nss/lib/freebl/ecl/ecp_256_32.c (revision 190723)
+++ mozilla/security/nss/lib/freebl/ecl/ecp_256_32.c (working copy)
@@ -1264,9 +1264,9 @@
#endif
#ifdef MP_USE_UINT_DIGIT
-#define BYTESWAP_MP_DIGIT_TO_LE(x) BYTESWAP32(BYTESWAP32(x))
+#define BYTESWAP_MP_DIGIT_TO_LE(x) BYTESWAP32(x)
#else
-#define BYTESWAP_MP_DIGIT_TO_LE(x) BYTESWAP64(BYTESWAP64(x))
+#define BYTESWAP_MP_DIGIT_TO_LE(x) BYTESWAP64(x)
#endif
#endif /* IS_BIG_ENDIAN */

Powered by Google App Engine
This is Rietveld 408576698