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 | cbdcfa3c7e41666fafa94250881c653fc4764634 (patch) | |
tree | 87bf409210f5f1264ae0209f3299894dba511425 /toolkit/xre | |
parent | cc8c0c29f03c4e60a49959cd3657b4fa473db570 (diff) | |
download | uxp-cbdcfa3c7e41666fafa94250881c653fc4764634.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 |