aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nbutton23/zxcvbn-go/frequency
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-07-04 11:12:55 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-07-04 15:05:30 +0200
commitc7d7f10bdff703e4a3c0414e8a33d4e45c91eb35 (patch)
tree0dff0ee1f98dbfa3ad8776112053a450d176592b /vendor/github.com/nbutton23/zxcvbn-go/frequency
parent9573094ce235bd9afe88f5da27a47dd6bcc1e13b (diff)
go.mod: vendor golangci-lint
Diffstat (limited to 'vendor/github.com/nbutton23/zxcvbn-go/frequency')
-rw-r--r--vendor/github.com/nbutton23/zxcvbn-go/frequency/frequency.go50
1 files changed, 50 insertions, 0 deletions
diff --git a/vendor/github.com/nbutton23/zxcvbn-go/frequency/frequency.go b/vendor/github.com/nbutton23/zxcvbn-go/frequency/frequency.go
new file mode 100644
index 000000000..d056e4d4e
--- /dev/null
+++ b/vendor/github.com/nbutton23/zxcvbn-go/frequency/frequency.go
@@ -0,0 +1,50 @@
+package frequency
+
+import (
+ "encoding/json"
+ "log"
+
+ "github.com/nbutton23/zxcvbn-go/data"
+)
+
+// List holds a frequency list
+type List struct {
+ Name string
+ List []string
+}
+
+// Lists holds all the frequency list in a map
+var Lists = make(map[string]List)
+
+func init() {
+ maleFilePath := getAsset("data/MaleNames.json")
+ femaleFilePath := getAsset("data/FemaleNames.json")
+ surnameFilePath := getAsset("data/Surnames.json")
+ englishFilePath := getAsset("data/English.json")
+ passwordsFilePath := getAsset("data/Passwords.json")
+
+ Lists["MaleNames"] = getStringListFromAsset(maleFilePath, "MaleNames")
+ Lists["FemaleNames"] = getStringListFromAsset(femaleFilePath, "FemaleNames")
+ Lists["Surname"] = getStringListFromAsset(surnameFilePath, "Surname")
+ Lists["English"] = getStringListFromAsset(englishFilePath, "English")
+ Lists["Passwords"] = getStringListFromAsset(passwordsFilePath, "Passwords")
+
+}
+func getAsset(name string) []byte {
+ data, err := data.Asset(name)
+ if err != nil {
+ panic("Error getting asset " + name)
+ }
+
+ return data
+}
+func getStringListFromAsset(data []byte, name string) List {
+
+ var tempList List
+ err := json.Unmarshal(data, &tempList)
+ if err != nil {
+ log.Fatal(err)
+ }
+ tempList.Name = name
+ return tempList
+}