NDOY3M4N / gopass

A super basic CLI app for generating password 😁.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ”’ 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 😁.

License:MIT License


Languages

Language:Go 100.0%