Skip to content

A super basic CLI app for generating password 😁.

License

Notifications You must be signed in to change notification settings

NDOY3M4N/gopass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

16 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ”’ GoPass

made-in-galsen

GoPass is a super simple CLI program for generating "random" passwords.

Usage

Note This project is just me learning Golang, the code is not perfect πŸ˜….

After you've cloned the repo, you first need to define the options in the main.go file

option := internal.Option{
  Length: 16,
  HasUppercase: true,
  HasLowercase: true,
  HasNumber: true,
  HasSymbol: true
}

pwd, score := internal.Generate(option)

And now, you can run the program with go run . or build it go build to generate passwords.

About

A super basic CLI app for generating password 😁.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages