mirror of
https://github.com/ivuorinen/a.git
synced 2026-01-26 03:24:07 +00:00
2ab388f0f7067b3c4b4ba8e561bd514da8258ab9
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
A CLI Wrapper for Age Encryption
A robust command-line interface (CLI) wrapper around the age encryption tool. This utility simplifies encryption and decryption using SSH keys, with integrated support for fetching public keys from GitHub.
Features
- Secure Encryption/Decryption: Utilize SSH and GitHub keys with
agefor strong encryption. - Configuration: Easily configurable via a YAML file.
- Structured Logging: JSON-formatted logs with configurable paths.
- Cross-platform: Supports Linux, macOS, and Windows.
- Shell Completion: Auto-generated completion scripts for Bash, Zsh, and Fish.
- Robust Error Handling: Comprehensive and clear error messaging.
Installation
Prerequisites
- Go (1.21+)
ageencryption tool
Build from source
git clone <repository-url>
cd <repository-directory>
go build -o a
Move binary to path (optional)
sudo mv a /usr/local/bin/
Usage
Basic usage
a [command] [flags]
Commands
config: Manage application settingsencrypt: Encrypt filesdecrypt: Decrypt filescompletion: Generate shell completion scripts
Examples
Configure the CLI
a config --ssh-key ~/.ssh/id_rsa --github-user yourusername --default-recipients ~/.ssh/id_rsa.pub --cache-ttl 120
Encrypt a file
a encrypt -o encrypted_file.txt input.txt
Decrypt a file
a decrypt -o decrypted_file.txt encrypted_file.txt
Generate shell completions
a completion bash > /etc/bash_completion.d/a
Configuration File
Configuration is stored at $HOME/.config/a/config.yaml:
ssh_key_path: "/home/user/.ssh/id_rsa"
github_user: "yourusername"
default_recipients:
- "/home/user/.ssh/id_rsa.pub"
cache_ttl_minutes: 120
log_file_path: "/home/user/.state/a/cli.log"
Logging
Structured JSON logs are written to a configurable log file (cli.log). Verbosity can be adjusted with the -v or --verbose flag.
Testing
Run unit tests with:
go test ./...
License
This project is licensed under the MIT License. See the LICENSE file for details.
Description
Languages
Go
96%
Just
4%