An open API service indexing awesome lists of open source software.

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

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