From 6efd685a1777e2a943e895c79a3eba6d02eec821 Mon Sep 17 00:00:00 2001 From: Fedor Date: Thu, 1 Aug 2019 03:18:18 +0300 Subject: [PATCH] Change softoken password rounds to a more conservative number. --- security/nss/lib/softoken/sftkpwd.c | 4 ++-- 1 file 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 ;