{"id":39684463,"url":"https://github.com/schultz-is/passgen","last_synced_at":"2026-01-18T09:57:10.610Z","repository":{"id":324454257,"uuid":"279150605","full_name":"schultz-is/passgen","owner":"schultz-is","description":"Password and passphrase generation utility.","archived":false,"fork":false,"pushed_at":"2025-11-16T04:38:21.000Z","size":993,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"trunk","last_synced_at":"2025-12-01T08:23:59.914Z","etag":null,"topics":["command-line","command-line-tool","go-tool","passphrase","passphrase-generator","password","password-generator"],"latest_commit_sha":null,"homepage":"https://passgen.is","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/schultz-is.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-07-12T21:25:49.000Z","updated_at":"2025-11-16T04:36:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/schultz-is/passgen","commit_stats":null,"previous_names":["schultz-is/passgen"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/schultz-is/passgen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schultz-is%2Fpassgen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schultz-is%2Fpassgen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schultz-is%2Fpassgen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schultz-is%2Fpassgen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/schultz-is","download_url":"https://codeload.github.com/schultz-is/passgen/tar.gz/refs/heads/trunk","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schultz-is%2Fpassgen/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28534203,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command-line","command-line-tool","go-tool","passphrase","passphrase-generator","password","password-generator"],"created_at":"2026-01-18T09:57:10.549Z","updated_at":"2026-01-18T09:57:10.603Z","avatar_url":"https://github.com/schultz-is.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# passgen\n\n![Builds](https://github.com/schultz-is/passgen/workflows/CI/badge.svg)\n[![Go Report Card](https://goreportcard.com/badge/github.com/schultz-is/passgen)](https://goreportcard.com/report/github.com/schultz-is/passgen)\n[![GoDoc](https://godoc.org/github.com/schultz-is/passgen?status.svg)](https://pkg.go.dev/github.com/schultz-is/passgen)\n[![License](https://img.shields.io/github/license/schultz-is/passgen)](./LICENSE)\n\n`passgen` is an API and command-line utility for generating passwords and passphrases.\n\n## Installation\n\nTo install the command-line utility:\n```console\ngit clone -b stable --depth 1 https://github.com/schultz-is/passgen.git\ncd passgen\nmake install\n```\n\nTo install the API for use in other projects:\n```console\ngo get github.com/schultz-is/passgen\n```\n\n## Examples\n\n### Using the command-line utility\n```console\n\u003e passgen password\nvt7tStRf3SfLV3V3\n```\n\n```console\n\u003e passgen pw -alnsu\nBc!Eyca9pHmWuRJr\n```\n\n```console\n\u003e passgen pw 5 10 --alphabet \"ACGT\"\nATAAG\nCATTC\nTTGAT\nCGGAT\nTGTAG\nGCGAC\nACATG\nTTATT\nACTAT\nCCGTA\n```\n\n```console\n\u003e passgen passphrase\nfaceless navigate scabby return snorkel cough\n```\n\n```console\n\u003e passgen pp -ts.\nCranberry.Deskwork.Ramble.Energize.Gloss.Tranquil\n```\n\n```console\n\u003e passgen pp 5 6 -uw words.txt\nTANNING TRICKLE PRECOOK KEEP ARMHOLE\nMARITIME LADYLIKE ELM UNDRAFTED BONANZA\nEGOTISM MANTIS BANNER MUNICIPAL AMUSING\nEVOLUTION WIRING TRACK BLURT GREYHOUND\nUNTITLED RURAL SHAKINESS GEOMETRIC ARMREST\nWHY OUTCLASS RIVETING OVERLORD UNFIXED\n```\n\n### Using the API\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/schultz-is/passgen\"\n)\n\nfunc main() {\n\tpasswords, err := passgen.GeneratePasswords(\n\t\tpassgen.PasswordCountDefault,\n\t\tpassgen.PasswordLengthDefault,\n\t\tpassgen.AlphabetDefault,\n\t)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tfor _, password := range passwords {\n\t\tfmt.Println(password)\n\t}\n}\n```\n[Open in Go Playground](https://play.golang.org/p/H45Sord6t0v)\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/schultz-is/passgen\"\n)\n\nfunc main() {\n\tpassphrases, err := passgen.GeneratePassphrases(\n\t\tpassgen.PassphraseCountDefault,\n\t\tpassgen.PassphraseWordCountDefault,\n\t\tpassgen.PassphraseSeparatorDefault,\n\t\tpassgen.PassphraseCasingDefault,\n\t\tpassgen.WordListDefault,\n\t)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tfor _, passphrase := range passphrases {\n\t\tfmt.Println(passphrase)\n\t}\n}\n```\n[Open in Go Playground](https://play.golang.org/p/I-t1GM0QjUy)\n\n## Tests\n\n```console\n\u003e make test\n\u003e make cover\n```\n\n## Benchmarks\n\n```console\n\u003e make benchmark\n\u003e go tool pprof prof/cpu.prof\n\u003e go tool pprof prof/mem.prof\n```\n\n## Build\n\n```console\n\u003e make build\n\u003e ./dist/passgen --version\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fschultz-is%2Fpassgen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fschultz-is%2Fpassgen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fschultz-is%2Fpassgen/lists"}