Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluidkeys/fluidkeys
Send encrypted secrets. Fluidkeys lets you send passwords, keys and personal information from the terminal. Powered by OpenPGP end-to-end encryption.
https://github.com/fluidkeys/fluidkeys
Last synced: 3 months ago
JSON representation
Send encrypted secrets. Fluidkeys lets you send passwords, keys and personal information from the terminal. Powered by OpenPGP end-to-end encryption.
- Host: GitHub
- URL: https://github.com/fluidkeys/fluidkeys
- Owner: fluidkeys
- License: agpl-3.0
- Created: 2018-08-07T16:32:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-15T17:23:01.000Z (over 5 years ago)
- Last Synced: 2024-07-18T04:34:16.446Z (4 months ago)
- Language: Go
- Homepage: https://www.fluidkeys.com
- Size: 7.6 MB
- Stars: 71
- Watchers: 1
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Fluidkeys command line
[![Build Status](https://travis-ci.org/fluidkeys/fluidkeys.svg?branch=master)](https://travis-ci.org/fluidkeys/fluidkeys)
Fluidkeys helps teams protect themselves with strong encryption. It builds on the OpenPGP standard and is compatible with other OpenPGP software.
Fluidkeys is licensed under the [AGPLv3](https://www.gnu.org/licenses/agpl-3.0.txt).
0.2 helps you create a key or import one from `gpg`, then automatically maintain it.
Once installed, run it with `fk`.
## Install
Head over to [download.fluidkeys.com](https://download.fluidkeys.com)
## Install from source
You'll need the [Go compiler](https://golang.org/dl/)
Clone the repo:
```
REPODIR=$(go env GOPATH)/src/github.com/fluidkeys/fluidkeysgit clone https://github.com/fluidkeys/fluidkeys.git $REPODIR
cd $REPODIR
```Build and install to `/usr/local/bin/fk`:
```
make && sudo make install
```If you prefer to run without `sudo` (root), install into `$HOME/bin/fk`:
```
PREFIX=$HOME make install
```## Develop
If you want to hack on Fluidkeys locally you'll need [Go 1.10+](https://golang.org/dl/) and [dep](https://github.com/golang/dep#installation).
Run:
```
make run
```