Skip to content

Commit bce22cb

Browse files
authored
Merge pull request #1 from GeistInDerSH/master
Change password length from int to uint
2 parents 84682ec + 5335b84 commit bce22cb

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

cmd/go-generate-password/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ import (
1111

1212
var (
1313
rootCmd *cobra.Command
14-
length int
14+
length uint
1515
characterSet string
1616
includeSymbols bool
1717
includeNumbers bool
1818
includeLowercaseLetters bool
1919
includeUppercaseLetters bool
2020
excludeSimilarCharacters bool
2121
excludeAmbiguousCharacters bool
22-
times int
22+
times uint
2323
)
2424

2525
func main() {
@@ -30,15 +30,15 @@ func main() {
3030
Long: "go-generate-password is a password generating engine written in Go.",
3131
}
3232

33-
rootCmd.PersistentFlags().IntVarP(&length, "length", "l", generator.DefaultConfig.Length, "Length of the password")
33+
rootCmd.PersistentFlags().UintVarP(&length, "length", "l", generator.DefaultConfig.Length, "Length of the password")
3434
rootCmd.PersistentFlags().StringVar(&characterSet, "characters", generator.DefaultConfig.CharacterSet, "Character set for the config")
3535
rootCmd.PersistentFlags().BoolVar(&includeSymbols, "symbols", generator.DefaultConfig.IncludeSymbols, "Include symbols")
3636
rootCmd.PersistentFlags().BoolVar(&includeNumbers, "numbers", generator.DefaultConfig.IncludeNumbers, "Include numbers")
3737
rootCmd.PersistentFlags().BoolVar(&includeLowercaseLetters, "lowercase", generator.DefaultConfig.IncludeLowercaseLetters, "Include lowercase letters")
3838
rootCmd.PersistentFlags().BoolVar(&includeUppercaseLetters, "uppercase", generator.DefaultConfig.IncludeSymbols, "Include uppercase letters")
3939
rootCmd.PersistentFlags().BoolVar(&excludeSimilarCharacters, "exclude-similar", generator.DefaultConfig.ExcludeSimilarCharacters, "Exclude similar characters")
4040
rootCmd.PersistentFlags().BoolVar(&excludeAmbiguousCharacters, "exclude-ambiguous", generator.DefaultConfig.ExcludeAmbiguousCharacters, "Exclude ambiguous characters")
41-
rootCmd.PersistentFlags().IntVarP(&times, "times", "n", 1, "How many passwords to generate")
41+
rootCmd.PersistentFlags().UintVarP(&times, "times", "n", 1, "How many passwords to generate")
4242

4343
err := rootCmd.Execute()
4444
if err != nil {

generator/generator.go

+12-12
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ import (
99

1010
const (
1111
// LengthWeak weak length password
12-
LengthWeak = 6
12+
LengthWeak uint = 6
1313

1414
// LengthOK ok length password
15-
LengthOK = 12
15+
LengthOK uint = 12
1616

1717
// LengthStrong strong length password
18-
LengthStrong = 24
18+
LengthStrong uint = 24
1919

2020
// LengthVeryStrong very strong length password
21-
LengthVeryStrong = 36
21+
LengthVeryStrong uint = 36
2222

2323
// DefaultLetterSet is the letter set that is defaulted to - just the
2424
// alphabet
@@ -73,7 +73,7 @@ type Generator struct {
7373
// what type of password to generate
7474
type Config struct {
7575
// Length is the length of password to generate
76-
Length int
76+
Length uint
7777

7878
// CharacterSet is the setting to manually set the
7979
// character set
@@ -191,7 +191,7 @@ func (g Generator) Generate() (*string, error) {
191191
characterSet := strings.Split(g.Config.CharacterSet, "")
192192
max := big.NewInt(int64(len(characterSet)))
193193

194-
for i := 0; i < g.Config.Length; i++ {
194+
for i := uint(0); i < g.Config.Length; i++ {
195195
val, err := rand.Int(rand.Reader, max)
196196
if err != nil {
197197
return nil, err
@@ -203,9 +203,9 @@ func (g Generator) Generate() (*string, error) {
203203

204204
// GenerateMany generates multiple passwords with length set
205205
// in the config
206-
func (g Generator) GenerateMany(amount int) ([]string, error) {
206+
func (g Generator) GenerateMany(amount uint) ([]string, error) {
207207
var generated []string
208-
for i := 0; i < amount; i++ {
208+
for i := uint(0); i < amount; i++ {
209209
str, err := g.Generate()
210210
if err != nil {
211211
return nil, err
@@ -217,11 +217,11 @@ func (g Generator) GenerateMany(amount int) ([]string, error) {
217217
}
218218

219219
// 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) {
221221
var generated string
222222
characterSet := strings.Split(g.Config.CharacterSet, "")
223223
max := big.NewInt(int64(len(characterSet)))
224-
for i := 0; i < length; i++ {
224+
for i := uint(0); i < length; i++ {
225225
val, err := rand.Int(rand.Reader, max)
226226
if err != nil {
227227
return nil, err
@@ -232,9 +232,9 @@ func (g Generator) GenerateWithLength(length int) (*string, error) {
232232
}
233233

234234
// 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) {
236236
var generated []string
237-
for i := 0; i < amount; i++ {
237+
for i := uint(0); i < amount; i++ {
238238
str, err := g.GenerateWithLength(length)
239239
if err != nil {
240240
return nil, err

generator/generator_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ func TestGenerator_Generate(t *testing.T) {
162162
name: "valid",
163163
fields: fields{&DefaultConfig},
164164
test: func(pwd *string, characterSet string) {
165-
assert.Len(t, *pwd, DefaultConfig.Length)
165+
assert.Len(t, *pwd, int(DefaultConfig.Length))
166166
err := stringMatchesCharacters(*pwd, characterSet)
167167
if err != nil {
168168
t.Errorf("Generate() error = %v", err)
@@ -189,7 +189,7 @@ func TestGenerator_GenerateMany(t *testing.T) {
189189
Config *Config
190190
}
191191
type args struct {
192-
amount int
192+
amount uint
193193
}
194194
tests := []struct {
195195
name string
@@ -253,7 +253,7 @@ func TestGenerator_GenerateWithLength(t *testing.T) {
253253
Config *Config
254254
}
255255
type args struct {
256-
length int
256+
length uint
257257
}
258258
tests := []struct {
259259
name string
@@ -294,8 +294,8 @@ func TestGenerator_GenerateManyWithLength(t *testing.T) {
294294
Config *Config
295295
}
296296
type args struct {
297-
amount int
298-
length int
297+
amount uint
298+
length uint
299299
}
300300
tests := []struct {
301301
name string

0 commit comments

Comments
 (0)