https://github.com/theykk/gkey
Gkey A simple vaultless password manager in Go
https://github.com/theykk/gkey
go password stateless vault
Last synced: about 1 year ago
JSON representation
Gkey A simple vaultless password manager in Go
- Host: GitHub
- URL: https://github.com/theykk/gkey
- Owner: TheYkk
- License: apache-2.0
- Created: 2020-10-26T19:51:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-16T09:56:04.000Z (about 5 years ago)
- Last Synced: 2024-06-21T02:05:09.057Z (about 2 years ago)
- Topics: go, password, stateless, vault
- Language: Go
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Gkey
Gkey is a simple vaultless password manager in Go.
It's generating sha256 sum of password + "-" + realm combination.
And with that sum gkey generating secure password.
## Usage
### Example
```bash
gkey -r github.com -p my-super-secure-master-password
# 6a?_#ZH$kVtB,P*!
```
### Flags
`-p ` - master password which will be used to generate other passwords
`-r ` - any string which identifies requested password, most likely key usage or resource URL
`-l ` - number of characters in the generated password (default 16 )
> inspired by https://github.com/cloudflare/gokey