@@ -9,16 +9,16 @@ import (
9
9
10
10
const (
11
11
// LengthWeak weak length password
12
- LengthWeak = 6
12
+ LengthWeak uint = 6
13
13
14
14
// LengthOK ok length password
15
- LengthOK = 12
15
+ LengthOK uint = 12
16
16
17
17
// LengthStrong strong length password
18
- LengthStrong = 24
18
+ LengthStrong uint = 24
19
19
20
20
// LengthVeryStrong very strong length password
21
- LengthVeryStrong = 36
21
+ LengthVeryStrong uint = 36
22
22
23
23
// DefaultLetterSet is the letter set that is defaulted to - just the
24
24
// alphabet
@@ -73,7 +73,7 @@ type Generator struct {
73
73
// what type of password to generate
74
74
type Config struct {
75
75
// Length is the length of password to generate
76
- Length int
76
+ Length uint
77
77
78
78
// CharacterSet is the setting to manually set the
79
79
// character set
@@ -191,7 +191,7 @@ func (g Generator) Generate() (*string, error) {
191
191
characterSet := strings .Split (g .Config .CharacterSet , "" )
192
192
max := big .NewInt (int64 (len (characterSet )))
193
193
194
- for i := 0 ; i < g .Config .Length ; i ++ {
194
+ for i := uint ( 0 ) ; i < g .Config .Length ; i ++ {
195
195
val , err := rand .Int (rand .Reader , max )
196
196
if err != nil {
197
197
return nil , err
@@ -203,9 +203,9 @@ func (g Generator) Generate() (*string, error) {
203
203
204
204
// GenerateMany generates multiple passwords with length set
205
205
// in the config
206
- func (g Generator ) GenerateMany (amount int ) ([]string , error ) {
206
+ func (g Generator ) GenerateMany (amount uint ) ([]string , error ) {
207
207
var generated []string
208
- for i := 0 ; i < amount ; i ++ {
208
+ for i := uint ( 0 ) ; i < amount ; i ++ {
209
209
str , err := g .Generate ()
210
210
if err != nil {
211
211
return nil , err
@@ -217,11 +217,11 @@ func (g Generator) GenerateMany(amount int) ([]string, error) {
217
217
}
218
218
219
219
// GenerateWithLength generate one password with set length
220
- func (g Generator ) GenerateWithLength (length int ) (* string , error ) {
220
+ func (g Generator ) GenerateWithLength (length uint ) (* string , error ) {
221
221
var generated string
222
222
characterSet := strings .Split (g .Config .CharacterSet , "" )
223
223
max := big .NewInt (int64 (len (characterSet )))
224
- for i := 0 ; i < length ; i ++ {
224
+ for i := uint ( 0 ) ; i < length ; i ++ {
225
225
val , err := rand .Int (rand .Reader , max )
226
226
if err != nil {
227
227
return nil , err
@@ -232,9 +232,9 @@ func (g Generator) GenerateWithLength(length int) (*string, error) {
232
232
}
233
233
234
234
// GenerateManyWithLength generates multiple passwords with set length
235
- func (g Generator ) GenerateManyWithLength (amount , length int ) ([]string , error ) {
235
+ func (g Generator ) GenerateManyWithLength (amount , length uint ) ([]string , error ) {
236
236
var generated []string
237
- for i := 0 ; i < amount ; i ++ {
237
+ for i := uint ( 0 ) ; i < amount ; i ++ {
238
238
str , err := g .GenerateWithLength (length )
239
239
if err != nil {
240
240
return nil , err
0 commit comments