diff options
author | MrArmonius <mrarmonius@gmail.com> | 2021-07-26 15:29:44 +0200 |
---|---|---|
committer | MrArmonius <mrarmonius@gmail.com> | 2021-07-26 15:29:44 +0200 |
commit | 307d672546ced0707a774a31e5ce9410ebab7659 (patch) | |
tree | 4f34557bddea0482281b08d505b0789b44263952 | |
parent | 9a8c19ec0f9b2f09daab244a49c67904c5c086aa (diff) | |
download | bottin-307d672546ced0707a774a31e5ce9410ebab7659.tar.gz bottin-307d672546ced0707a774a31e5ce9410ebab7659.zip |
Correct the function Generate-Nametest-go-Bottin
-rw-r--r-- | test/handler.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/handler.go b/test/handler.go index 0e7a95b..43fad77 100644 --- a/test/handler.go +++ b/test/handler.go @@ -32,7 +32,9 @@ func PrintError(LDAPError error) { //Generate an unique name, which store in all_names func (inst *instance) GenerateName() (name string) { - alphabet := "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" + alphabet := []string{"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", + "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", + "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "é", "è", "ê", "ë", "à", "@", "â", "ä", "û", "ü", "ù", "$", "£", "%", "ø", "€"} length := R.Intn(maxlength_generateName) + minlength_generateName //Check if this name not exist already @@ -41,7 +43,7 @@ func (inst *instance) GenerateName() (name string) { for only_one := true; only_one; _, only_one = allNames.cn[name] { //Create the name for i := 0; i < length; i++ { - name += string(alphabet[R.Intn(len(alphabet))]) + name += alphabet[R.Intn(len(alphabet))] } } |