Skip to content

Command Line Interface (CLI) made to generate passwords based on a characters set

Notifications You must be signed in to change notification settings

yael-castro/passgen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PassGEN

     ____                      _____   _____  _     __
    /    \ ____   ___ ___     //  //  / ___/ / \   / /
   /  ___//   /| //_ //_  == //  __  / __/  / / \ / /  Password Generator  
  /__/    \___\|__//__//    //___// /____/ /_/   \_/

PassGEN is a tool for character-based password generation.

Generate your own password dictionaries based on character sets!

Command

Installation
go install github.com/yael-castro/passgen/cmd/passgen@latest
See how to use
passgen 

Library

Installation
go get github.com/yael-castro/passgen/pkg/password@latest
See how to use
package main

import (
	"fmt"
	"github.com/yael-castro/passgen/pkg/password"
)

func main() {
	p := password.New('A', 'B', 'C')

	for p.Next() {
            pw := p.Generate()
            fmt.Println(string(pw))
	}
}

About

Command Line Interface (CLI) made to generate passwords based on a characters set

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages