package main import ( "fmt" "zxcvbn-go/matching" "zxcvbn-go/scoring" "time" "zxcvbn-go/utils/math" ) func main() { password :="qw@!abcdPLSB$6D" fmt.Println(PasswordStrength(password, nil)) } func PasswordStrength(password string, userInputs []string) scoring.MinEntropyMatch { start := time.Now() matches := matching.Omnimatch(password, userInputs) result := scoring.MinimumEntropyMatchSequence(password, matches) end := time.Now() calcTime := end.Nanosecond() - start.Nanosecond() result.CalcTime = zxcvbn_math.Round(float64(calcTime)*time.Nanosecond.Seconds(), .5, 3) return result }