summaryrefslogtreecommitdiffstats
path: root/security/nss/lib
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-07-03 15:01:34 +0200
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-07-04 10:58:26 +0200
commit1d2ba2fbe2a7d6024f92cb88763c0c1d7d04530c (patch)
treee6d6719be72b32413dbe5d0ef6d4975df3532229 /security/nss/lib
parent4d15d381ae0032a4371c12727ad3c6fb1fe82e0f (diff)
downloadUXP-1d2ba2fbe2a7d6024f92cb88763c0c1d7d04530c.tar
UXP-1d2ba2fbe2a7d6024f92cb88763c0c1d7d04530c.tar.gz
UXP-1d2ba2fbe2a7d6024f92cb88763c0c1d7d04530c.tar.lz
UXP-1d2ba2fbe2a7d6024f92cb88763c0c1d7d04530c.tar.xz
UXP-1d2ba2fbe2a7d6024f92cb88763c0c1d7d04530c.zip
Change softoken password rounds to a more conservative number still
within industry standard security, considering our db hashing is more CPU intensive than anticipated.
Diffstat (limited to 'security/nss/lib')
-rw-r--r--security/nss/lib/softoken/sftkpwd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/nss/lib/softoken/sftkpwd.c b/security/nss/lib/softoken/sftkpwd.c
index 745e724f0..b6d098a07 100644
--- a/security/nss/lib/softoken/sftkpwd.c
+++ b/security/nss/lib/softoken/sftkpwd.c
@@ -36,9 +36,9 @@
const int NSS_DEFAULT_ITERATION_COUNT =
#ifdef DEBUG
- 1000
+ 25
#else
- 60000
+ 500
#endif
;