diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-14 13:14:57 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-14 13:14:57 +0100 |
commit | 217dca872b5aef8bca06a6ae3eb274b2e2fb34f0 (patch) | |
tree | 87bf409210f5f1264ae0209f3299894dba511425 /toolkit/xre | |
parent | 3733205f095c409a1547b000cbab68cca2c6af18 (diff) | |
download | uxp-217dca872b5aef8bca06a6ae3eb274b2e2fb34f0.tar.gz |
Fix comments for NSS PBKDF setup (no code change)
Diffstat (limited to 'toolkit/xre')
-rw-r--r-- | toolkit/xre/nsAppRunner.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp index ab3f3881da..b27e466977 100644 --- a/toolkit/xre/nsAppRunner.cpp +++ b/toolkit/xre/nsAppRunner.cpp @@ -2806,7 +2806,8 @@ XREMain::XRE_mainInit(bool* aExitFlag) // Allow iteration counts in DBM mode SaveToEnv("NSS_ALLOW_LEGACY_DBM_ITERATION_COUNT=1"); // Set default Master Password rounds to a sane value for DBM which is slower - // than SQL for PKDBF. The NSS hard-coded default of 10,000 is too much. + // than SQL for PBKDF. The NSS hard-coded default of 10,000 is too much. + // See also Bug 1606992 for perf issues. #ifdef DEBUG SaveToEnv("NSS_MAX_MP_PBE_ITERATION_COUNT=15"); #else |