Go to file
Alexander Neumann 543c2c724c Test all Sub-Packages on 'make test' 2014-11-15 17:17:10 +01:00
backend Add newlink to version file 2014-11-15 15:30:54 +01:00
chunker Fix special case with null byte input 2014-10-03 21:44:39 +02:00
cmd Cleanup, remove unused commands 2014-10-05 16:17:40 +02:00
test Add decrypt, refactor 2014-10-03 21:44:55 +02:00
LICENSE LICENSE: Add email address 2014-09-18 21:10:30 +02:00
Makefile Test all Sub-Packages on 'make test' 2014-11-15 17:17:10 +01:00
README.md Add quick'n dirty building instructions 2014-10-02 21:42:53 +02:00
archiver.go Add decrypt, refactor 2014-10-03 21:44:55 +02:00
contenthandler.go Add commands 'cat','list' and 'ls' 2014-10-05 14:44:59 +02:00
generic_test.go Break out test functions 2014-08-01 22:09:30 +02:00
key.go Use CTR instead of CBC for encryption 2014-11-15 17:12:52 +01:00
key_int_test.go Use CTR instead of CBC for encryption 2014-11-15 17:12:52 +01:00
key_test.go Add decrypt, refactor 2014-10-03 21:44:55 +02:00
restorer.go Add decrypt, refactor 2014-10-03 21:44:55 +02:00
snapshot.go Add decrypt, refactor 2014-10-03 21:44:55 +02:00
snapshot_test.go Add decrypt, refactor 2014-10-03 21:44:55 +02:00
storagemap.go Add decrypt, refactor 2014-10-03 21:44:55 +02:00
tree.go Add hint for osutil library 2014-10-07 23:23:18 +02:00
tree_test.go Add decrypt, refactor 2014-10-03 21:44:55 +02:00
zerrors_linux.go Refactor 2014-08-11 22:47:24 +02:00

README.md

WARNING

WARNING: At the moment, consider khepri as alpha quality software, it is not yet finished. Do not use it for real data!

Khepri

Khepri is a program that does backups right. The design goals are:

  • Easy: Doing backups should be a frictionless process, otherwise you are tempted to skip it. Khepri should be easy to configure and use, so that in the unlikely event of a data loss you can just restore it. Likewise, restoring data should not be complicated.

  • Fast: Backing up your data with khepri should only be limited by your network or harddisk bandwidth so that you can backup your files every day. Nobody does backups if it takes too much time. Restoring backups should only transfer data that is needed for the files that are to be restored, so that this process is also fast.

  • Verifiable: Much more important than backup is restore, so khepri enables you to easily verify that all data can be restored.

  • Secure: Khepri uses cryptography to guarantee confidentiality and integrity of your data. The location the backup data is stored is assumed not to be a trusted environment (e.g. a shared space where others like system administrators are able to access your backups). Khepri is built to secure your data against such attackers.

Building

Install Go (at least 1.2), then run:

export GOPATH=~/src/go
go get github.com/fd0/khepri/cmd/khepri
$GOPATH/bin/khepri --help

License

Khepri is licensed under "BSD 2-Clause License". You can find the complete text in the file LICENSE.