Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyclone-github/passgen
Password Generator
https://github.com/cyclone-github/passgen
cyclone generator golang passgen password password-generator passwords
Last synced: about 1 month ago
JSON representation
Password Generator
- Host: GitHub
- URL: https://github.com/cyclone-github/passgen
- Owner: cyclone-github
- License: gpl-2.0
- Created: 2023-01-10T19:00:19.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-08T21:04:31.000Z (about 2 months ago)
- Last Synced: 2024-12-08T22:18:26.894Z (about 2 months ago)
- Topics: cyclone, generator, golang, passgen, password, password-generator, passwords
- Language: Go
- Homepage:
- Size: 36.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=cyclone-github&repo=passgen&theme=gruvbox)](https://github.com/cyclone-github/passgen/)
[![Go Report Card](https://goreportcard.com/badge/github.com/cyclone-github/passgen)](https://goreportcard.com/report/github.com/cyclone-github/passgen)
[![GitHub issues](https://img.shields.io/github/issues/cyclone-github/passgen.svg)](https://github.com/cyclone-github/passgen/issues)
[![License](https://img.shields.io/github/license/cyclone-github/passgen.svg)](LICENSE)
[![GitHub release](https://img.shields.io/github/release/cyclone-github/passgen.svg)](https://github.com/cyclone-github/passgen/releases)
[![Go Reference](https://pkg.go.dev/badge/github.com/cyclone-github/passgen.svg)](https://pkg.go.dev/github.com/cyclone-github/passgen)# Cyclone's PassGen
![image](https://i.imgur.com/9XzZVIm.png)Password generator which creates passwords using upper / lower / digit & special char. Password length must be >= 8 char. Can be used to create 1 or more passwords by using CLI interface.
### Example Usage:
```
$ ./passgen.bin
-----------------
| Cyclone PassGen |
-----------------Password length: 20
Number of passwords to generate: 10
,r/a/B6l.h0Ya#$\?dT.
c78i7/98"98*Y\G!]05<
fYex2u.a7\97dZ21829-
R"u51I8+]SP%]95*9o^^
9Y2'|47T=B1b.4\0hz53
f+Z89]J4v$l5}e2W<81I
?}]c
5z:7r1GSi(#f2[I=2g05
.O;&&at<1MC^76N.{{'4
*u15$4,A-5R9K]3OjX8p
```
### Compile from source:
- If you want the latest features, compiling from source is the best option since the release version may run several revisions behind the source code.
- This assumes you have Go and Git installed
- `git clone https://github.com/cyclone-github/passgen.git`
- `cd passgen`
- `go mod init passgen`
- `go mod tidy`
- `go build -ldflags="-s -w" .`
- Compile from source code how-to:
- https://github.com/cyclone-github/scripts/blob/main/intro_to_go.txt.txt