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

Unified Diff: nss/lib/softoken/fipstest.c

Issue 195763027: Update NSS to NSS_3_16_RC0. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Use the RTM tag Created 6 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
« no previous file with comments | « nss/lib/softoken/ecdecode.c ('k') | nss/lib/softoken/fipstokn.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/softoken/fipstest.c
===================================================================
--- nss/lib/softoken/fipstest.c (revision 256695)
+++ nss/lib/softoken/fipstest.c (working copy)
@@ -13,7 +13,7 @@
#include "pkcs11.h" /* Required for PKCS #11. */
#include "secerr.h"
-#ifdef NSS_ENABLE_ECC
+#ifndef NSS_DISABLE_ECC
#include "ec.h" /* Required for ECDSA */
#endif
@@ -1612,7 +1612,7 @@
return( CKR_DEVICE_ERROR );
}
-#ifdef NSS_ENABLE_ECC
+#ifndef NSS_DISABLE_ECC
static CK_RV
sftk_fips_ECDSA_Test(const PRUint8 *encodedParams,
@@ -1795,7 +1795,7 @@
return( CKR_OK );
}
-#endif /* NSS_ENABLE_ECC */
+#endif /* NSS_DISABLE_ECC */
static CK_RV
sftk_fips_DSA_PowerUpSelfTest( void )
@@ -2080,7 +2080,7 @@
if( rv != CKR_OK )
return rv;
-#ifdef NSS_ENABLE_ECC
+#ifndef NSS_DISABLE_ECC
/* ECDSA Power-Up SelfTest(s). */
rv = sftk_fips_ECDSA_PowerUpSelfTest();
« no previous file with comments | « nss/lib/softoken/ecdecode.c ('k') | nss/lib/softoken/fipstokn.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698