|
@@ -86,7 +86,7 @@ func main() {
|
|
fmt.Printf("100 / h:\t\t%s\t(throttled online attack)\n", guessesToHuman(guesses * (3600 / 100)))
|
|
fmt.Printf("100 / h:\t\t%s\t(throttled online attack)\n", guessesToHuman(guesses * (3600 / 100)))
|
|
fmt.Printf("10 / s:\t\t%s\t(unthrottled online attack)\n", guessesToHuman(guesses / 10))
|
|
fmt.Printf("10 / s:\t\t%s\t(unthrottled online attack)\n", guessesToHuman(guesses / 10))
|
|
fmt.Printf("10k / s:\t\t%s\t(offline attack, slow hash, many cores)\n", guessesToHuman(guesses / 1e4))
|
|
fmt.Printf("10k / s:\t\t%s\t(offline attack, slow hash, many cores)\n", guessesToHuman(guesses / 1e4))
|
|
- fmt.Printf("10b / s:\t\t%s\t(offline attack, slow hash, many cores)\n", guessesToHuman(guesses / 1e10))
|
|
|
|
|
|
+ fmt.Printf("10b / s:\t\t%s\t(offline attack, fast hash, many cores)\n", guessesToHuman(guesses / 1e10))
|
|
}
|
|
}
|
|
if haveIBeenPwned == true {
|
|
if haveIBeenPwned == true {
|
|
fmt.Println("\nThis password has been compromised and should not be used.")
|
|
fmt.Println("\nThis password has been compromised and should not be used.")
|