summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-07-03 15:01:34 +0200
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-07-03 16:22:13 +0200
commit5c9bde344d7c9ba14862499e8bcf546f8c2b8c0d (patch)
treea2879f8f5a6b03a881daffd1d24ad8e409d09dac /security
parent2c693974bcc2f85f492928e090e87893fd3c154e (diff)
downloaduxp-5c9bde344d7c9ba14862499e8bcf546f8c2b8c0d.tar.gz
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')
-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 745e724f0a..b6d098a07e 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
;