https://github.com/btylrob/apikitten
API Key and Token Storage App with AES Encrpytion
https://github.com/btylrob/apikitten
aes command-line cryptography go golang
Last synced: over 1 year ago
JSON representation
API Key and Token Storage App with AES Encrpytion
- Host: GitHub
- URL: https://github.com/btylrob/apikitten
- Owner: Btylrob
- Created: 2025-02-10T15:38:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-19T15:50:17.000Z (over 1 year ago)
- Last Synced: 2025-02-19T16:33:35.841Z (over 1 year ago)
- Topics: aes, command-line, cryptography, go, golang
- Language: Go
- Homepage:
- Size: 1.61 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# What is it?
APIKitten is an open-source command line program that I built over the weekend to solve my problem of storing API keys in compormisable applications.
This CLI helps store and retrieve api keys using diffrienetial password protection and [AES Go library](https://pkg.go.dev/crypto/aes) to encrpyt sensitive data...
## Installation
Install via go
```bash
go install github.com/Btylrob/APIKitten
```
## Commands
APIKitten focuses on simplicity using straight forward CLI commands to retrive and store API Keys.
```bash
Commands:
-s, --store Encrypt and store a new API key
-r, --retrieve Decrypt and display stored API keys
-d, --delete Deletes stored API key
-l, --list Show encrypted API keys
-h, --help Display this help menu
-v, --version Display version
```