diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-04-11 00:36:12 +1000 |
---|---|---|
committer | Erkin Alp Güney <erkinalp9035@gmail.com> | 2022-04-10 17:39:23 +0300 |
commit | 977861ad4e6eff025f0c0a1b4731f0efd283886d (patch) | |
tree | 5136c54ca12935d96988c8bbafdba68f6df80bbf /api | |
parent | Update Guild.ts (diff) | |
download | server-977861ad4e6eff025f0c0a1b4731f0efd283886d.tar.xz |
Fix compile errors in checkPassword's entropy check
Diffstat (limited to 'api')
-rw-r--r-- | api/src/util/utility/passwordStrength.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/api/src/util/utility/passwordStrength.ts b/api/src/util/utility/passwordStrength.ts index e75e48f6..f3960e48 100644 --- a/api/src/util/utility/passwordStrength.ts +++ b/api/src/util/utility/passwordStrength.ts @@ -46,15 +46,15 @@ export function checkPassword(password: string): number { strength = 0; } - let entropyMap; + let entropyMap: { [key: string]: number } = {}; for (let i = 0; i < password.length; i++) { if (entropyMap[password[i]]) entropyMap[password[i]]++; else entropyMap[password[i]] = 1; } - let entropies = Array(entropyMap); - + let entropies = Object.values(entropyMap); + entropies.map(x => (x / entropyMap.length)); - strength += entropies.reduceRight((a, x), a - (x * Math.log2(x))) / Math.log2(password.length); + strength += entropies.reduceRight((a: number, x: number) => a - (x * Math.log2(x))) / Math.log2(password.length); return strength; } |