Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 775 Bytes

File metadata and controls

38 lines (24 loc) · 775 Bytes

Generate Random Passwords using Golang

It is golang command line application to generate random passwords using "math/rand" golang inbuilt package

Usage

# clone a repo
git clone https://github.com/akilans/golang-mini-projects.git

# go to the 05-random-password dir
cd 05-random-password

# build
go build

# run

./random-password

# Enter the number of passwords you want to generate
# sample oputput
How many passwords you want to generate? - 3
Password 1 is 6l*@7CnzxC
Password 2 is !k63orMwI)
Password 3 is jS20!f&pNk

Reference

Golang By Example

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.