Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wayofthepie/sec
https://github.com/wayofthepie/sec
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/wayofthepie/sec
- Owner: wayofthepie
- Created: 2022-05-10T22:10:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-28T15:29:25.000Z (over 2 years ago)
- Last Synced: 2023-03-12T08:24:20.568Z (over 1 year ago)
- Language: Rust
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![build](https://github.com/wayofthepie/sec/actions/workflows/build.yml/badge.svg)](https://github.com/wayofthepie/sec/actions/workflows/build.yml)
[![cargo audit](https://github.com/wayofthepie/sec/actions/workflows/cargo_audit.yml/badge.svg)](https://github.com/wayofthepie/sec/actions/workflows/cargo_audit.yml)
[![codecov](https://codecov.io/gh/wayofthepie/sec/branch/main/graph/badge.svg?token=TAVF5SW2KM)](https://codecov.io/gh/wayofthepie/sec)
# sec
Simple secret manager wrapping GPG.# Commands
`sec` has a number of commands for interacting with the secret store.```
secUSAGE:
secOPTIONS:
-h, --help Print help informationSUBCOMMANDS:
help Print this message or the help of the given subcommand(s)
initialize Initialize the store with the given key id
insert Insert a value of the given name
retrieve Retrieve the value of the given name
```# Build
`sec` relies on the rust [gpgme wrapper](https://github.com/gpg-rs/gpgme) lib. This needs the following native libs installed.```console
sudo apt install libgpg-error-dev libgpgme-dev
```