Installation • Command-line completion • Man documentation • Usage • CI Status • Contributing • License
siocrypt
is a tool for encrypting/decrypting arbitrary data streams using Data At Rest Encryption (DARE).
To build the siocrypt
from scratch, make sure you have a working Go 1.22+ workspace (instructions), then:
go install github.com/essentialkaos/siocrypt@latest
The latest version of siocrypt
also available as container image on GitHub Container Registry and Docker Hub:
podman run --rm -it ghcr.io/essentialkaos/siocrypt:latest
# or
docker run --rm -it ghcr.io/essentialkaos/siocrypt:latest
You can download prebuilt binaries for Linux and macOS from EK Apps Repository:
bash <(curl -fsSL https://apps.kaos.st/get) siocrypt
You can generate completion for bash
, zsh
or fish
shell.
Bash:
sudo siocrypt --completion=bash 1> /etc/bash_completion.d/siocrypt
ZSH:
sudo siocrypt --completion=zsh 1> /usr/share/zsh/site-functions/siocrypt
Fish:
sudo siocrypt --completion=fish 1> /usr/share/fish/vendor_completions.d/siocrypt.fish
You can generate man page using next command:
siocrypt --generate-man | sudo gzip > /usr/share/man/man1/siocrypt.1.gz
Branch | Status |
---|---|
master |
|
develop |
Before contributing to this project please read our Contributing Guidelines.