diff --git a/src/functions/crackTimes/estimateCrackTime.ts b/src/functions/crackTimes/estimateCrackTime.ts index 79f4882..1759c94 100644 --- a/src/functions/crackTimes/estimateCrackTime.ts +++ b/src/functions/crackTimes/estimateCrackTime.ts @@ -24,7 +24,7 @@ export const estimateCrackTime = (password: string): string => { const length = password.length; - if (length >= 20) { + if (length > 18) { return 'Trillions of years'; } else if (length >= 8 && crackTimeDictionary[length]) { return crackTimeDictionary[length][key];