Go to file
Christopher Wellons 867ac296a5 Tweak README. 2017-03-03 14:06:43 -05:00
.gitignore Working. 2017-03-03 08:25:57 -05:00
Makefile Flesh out some interface. 2017-03-03 13:08:36 -05:00
README.md Tweak README. 2017-03-03 14:06:43 -05:00
UNLICENSE Add some docs. 2017-03-03 14:04:41 -05:00
chacha.c Tidy up. 2017-03-03 10:42:55 -05:00
chacha.h Fix ChaCha20 usage. 2017-03-03 13:36:18 -05:00
curve25519-donna.c Tidy up. 2017-03-03 10:42:55 -05:00
docs.h Flesh out some interface. 2017-03-03 13:08:36 -05:00
enchive.c Add filename handling. 2017-03-03 13:52:26 -05:00
machine.h Add authentication checksum. 2017-03-03 11:22:36 -05:00
optparse.h Working stuff. 2017-03-03 10:28:45 -05:00
sha256.c Add authentication checksum. 2017-03-03 11:22:36 -05:00
sha256.h Add authentication checksum. 2017-03-03 11:22:36 -05:00

README.md

Enchive : encrypted personal archives

Enchive is a tool encrypts files to yourself for long-term archival. It's intended as a focused, simple alternative to more complex solutions such as GnuPG. This program has no external dependencies and is very easy to build for local use.

Files are secured with uses ChaCha20, Curve25519, and SHA-224.

Usage

There are only three commands to worry about: keygen, archive, and extract. The very first thing to do is generate a master keypair using keygen.

$ enchive keygen

By default, this will create two files in your home directory: .enchive.pub (public key) and .enchive.sec (secret key). Distribute .enchive.pub to any machines where you plan to archive files. It's sufficient to encrypt files, but not to decrypt them.

To archive a file for storage:

$ enchive archive <file>

This will encrypt file as file.enchive (leaving the original in place). You can safely archive this wherever.

To extract the file later on a machine with .encrypt.sec:

$ enchive extract <file.enchive>

This will reproduce file.