Primary Maintainer: Brian Smith ([email protected])
Secondary Maintainer: Qi Ma ([email protected])
Self encrypting files (convergent encryption plus obfuscation)
Crate | Linux/OS X | Windows | Coverage | Issues |
---|---|---|---|---|
API Documentation - master branch | SAFE Network System Documention | MaidSafe website | Safe Community site |
---|
A version of convergent encryption with an additional obfuscation step. This pattern allows secured data that can also be de-duplicated. This library presents an API that can be utilised in any application that provides a POSIX like filesystem interface, dealing very effectively with the content part of any data (in tests the parallelised approach can actually be faster than reading/writing data as a single stream). It is important to realise two important aspects of this library:
- This library deals with file content only
- This library provides very secure data, but does return a data structure (DataMap) that in turn requires to be secured.
- Allow any size file
- Replace sequencer with new struct and use BufferedStream to offload to disk (MemoryMapped file)
- Clean up any cache chunks when disk space is low (start + now < 90%)
- Store intermediate chunks when disk space is low (start + now < 90%)
- Add another functor to constructor to allow storage query for chunks (not get)
- Check for first last middle chunks on net and presume file stored
- Uncomment benchmark tests read methods (require bench in beta channel or stabilised first)
self_encryption process and use case video
This library splits a file into encrypted chunks and also produces a data map for the same. This data map with encrypted chunks enables the file to be reconstituted. Instructions to use the 'basic_encryptor' example are as follows:
- Install RUST(Nightly build).
- OSX / Linux:
curl -s https://static.rust-lang.org/rustup.sh | sudo sh -s -- --channel=nightly
- Windows: Download Exe installer from http://www.rust-lang.org/install.html
- Install gcc.
- Linux:
sudo apt-get install gcc
- Windows: Any compatible gcc such as TDM-GCC
- Clone this repo / Download as zip and extract archive.
- To clone via Git:
git clone http://github.com/maidsafe/self_encryption.git
- Browse to repo locally in terminal / command prompt.
cd self_encryption
- Encrypt a file:
cargo run --example basic_encryptor -- -e <full_path_to_any_file>
You should now have the example binary in ../self_encryption/target/debug/examples/
. The data_map
for the given file and it's encrypted chunks will be written to the current directory.
- Decrypt a file:
cargo run --example basic_encryptor -- -d <full_path_to_data_map> <full_destination_path_including_filename>
This will restore the original file to the given destination path.