v0.2.0: Added open items

- Added generation of multiple passwords
- Added "exclude chars" feature
This commit is contained in:
Winni Neessen 2021-03-18 23:40:18 +01:00
parent 5d743f70ae
commit 37e73c8c7a
Signed by: wneessen
GPG key ID: 385AC9889632126E

22
apg.go
View file

@ -7,11 +7,12 @@ import (
"log" "log"
"math/big" "math/big"
"os" "os"
"regexp"
) )
// Constants // Constants
const DefaultPwLenght int = 20 const DefaultPwLenght int = 20
const VersionString string = "0.1.0" const VersionString string = "0.2.0"
const PwLowerCharsHuman string = "abcdefghjkmnpqrstuvwxyz" const PwLowerCharsHuman string = "abcdefghjkmnpqrstuvwxyz"
const PwUpperCharsHuman string = "ABCDEFGHJKMNPQRSTUVWXYZ" const PwUpperCharsHuman string = "ABCDEFGHJKMNPQRSTUVWXYZ"
const PwLowerChars string = "abcdefghijklmnopqrstuvwxyz" const PwLowerChars string = "abcdefghijklmnopqrstuvwxyz"
@ -54,7 +55,8 @@ func init() {
flag.IntVar(&config.maxPassLen, "x", DefaultPwLenght, "Maxiumum password length") flag.IntVar(&config.maxPassLen, "x", DefaultPwLenght, "Maxiumum password length")
flag.IntVar(&config.numOfPass, "n", 1, "Number of passwords to generate") flag.IntVar(&config.numOfPass, "n", 1, "Number of passwords to generate")
// TODO: Exclude chars are missing, yet // String flags
flag.StringVar(&config.excludeChars, "E", "", "Exclude list of characters from generated password")
flag.Parse() flag.Parse()
if config.showVersion { if config.showVersion {
@ -103,15 +105,15 @@ func main() {
if config.useSpecial { if config.useSpecial {
charRange = charRange + pwSpecialChars charRange = charRange + pwSpecialChars
} }
if config.excludeChars != "" {
regExp := regexp.MustCompile("[" + config.excludeChars + "]")
charRange = regExp.ReplaceAllLiteralString(charRange, "")
}
/* for i := 1; i <= config.numOfPass; i++ {
for i := 1; i <= config.numOfPass; i++ { pwString := getRandChar(&charRange, pwLength)
fmt.Println(i) fmt.Println(pwString)
} }
*/
pwString := getRandChar(&charRange, pwLength)
fmt.Println(pwString)
} }
func getRandChar(charRange *string, pwLength int) string { func getRandChar(charRange *string, pwLength int) string {