2023-07-24 15:32:37 +10:00
2023-07-23 22:00:52 +10:00
2023-07-23 22:00:52 +10:00
2023-07-23 22:00:52 +10:00
2023-07-11 10:57:17 +10:00
2023-07-23 22:00:52 +10:00
2023-07-23 22:00:52 +10:00
2023-07-11 00:52:01 +00:00
2023-07-23 22:00:52 +10:00
2023-07-23 22:00:52 +10:00

simple-privacy-tool

Simple Privacy Tool is a simple tool to encrypt and decrypt files. It uses the symmetric algorithm XChaCha-Poly1305 and Argon2id for the key derivation function.

Since this tool uses a symmetric algorithm, the level of privacy hinges solely on the password's strength. So, make sure to choose your password carefully.

Build

go build

Usage

Encrypt

Encrypting plainfile to cryptedfile

simple-privacy-tool encrypt plainfile cryptedfile

Decrypt

Decrypting cryptedfile back to plainfile

simple-privacy-tool decrypt cryptedfile plainfile

Using STDIN/STDOUT

simple-privacy-tool can operate on STDIN or STDOUT. Just replace the file path with -

tar -zcf - dir | simple-privacy-tool encrypt - - | another-command

Special usage, just omit both file paths to use STDIN and STDOUT.

tar -zcf - dir | simple-privacy-tool encrypt | another-command
Description
No description provided
Readme 66 KiB
v1.0.0 Latest
2023-07-27 15:31:00 +10:00
Languages
Go 100%