essentialkaos / siocrypt

Tool for encrypting/decrypting arbitrary data streams

Home Page:https://kaos.sh/siocrypt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Code Climate Maintainability Codebeat badge Codacy badge
GitHub Actions CI Status GitHub Actions CodeQL Status

InstallationCommand-line completionMan documentationUsageCI StatusContributingLicense


siocrypt is a tool for encrypting/decrypting arbitrary data streams using Data At Rest Encryption (DARE).

Installation

From source

To build the siocrypt from scratch, make sure you have a working Go 1.21+ workspace (instructions), then:

go install github.com/essentialkaos/siocrypt@latest

Container Image

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

Prebuilt binaries

You can download prebuilt binaries for Linux and macOS from EK Apps Repository:

bash <(curl -fsSL https://apps.kaos.st/get) siocrypt

Command-line completion

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

Man documentation

You can generate man page using next command:

siocrypt --generate-man | sudo gzip > /usr/share/man/man1/siocrypt.1.gz

Usage

CI Status

Branch Status
master CI
develop CI

Contributing

Before contributing to this project please read our Contributing Guidelines.

License

Apache License, Version 2.0

About

Tool for encrypting/decrypting arbitrary data streams

https://kaos.sh/siocrypt

License:Apache License 2.0


Languages

Language:Go 77.1%Language:Makefile 22.9%