https://github.com/i80and/backup-tools
https://github.com/i80and/backup-tools
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/i80and/backup-tools
- Owner: i80and
- License: mit
- Created: 2014-01-08T17:26:09.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-10-03T23:59:44.000Z (over 9 years ago)
- Last Synced: 2025-03-28T20:12:42.877Z (over 1 year ago)
- Language: C++
- Size: 1.86 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
backup-tools
============
Simple command-line helper utilities that can fit into a backup system.
USE AT YOUR OWN RISK.
Tools
=====
* backup
* Can back up to Amazon S3, list archives, prune old archives, and restore archives.
* wuffcrypt
* Extremely fast and secure symmetric encryption tool using libsodium (derived from NaCl) with scrypt for key derivation. This tool has not undergone peer-review, so treat it as the experimental software that it is.
Building wuffcrypt
==================
The following configurations have been tested and are known to work:
* Linux x86_64
* gcc 4.7+
* clang 3.2+
* Mac OS X
* Apple LLVM 8.0.0
* OpenBSD 6.0
* GCC 4.9
* Windows/MSYS
* gcc 4.8
* clang 3.4
* Haiku
* gcc 4.7
To build, run from the source root:
```
$ cd encrypt
$ make
$ make test
```
Windows users will have to use `cmake .. -G "MSYS Makefiles"`, and Haiku users must force GCC 4.x:
```
$ export CC=gcc-x86
$ export CXX=g++-x86
```