Info
Version: | 0.5.1 |
Author(s): | Christian Hermann |
Last Update: | Saturday, January 7, 2017 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/bitbeans/StreamCryptor |
NuGet Url: | https://www.nuget.org/packages/StreamCryptor |
Install
Install-Package StreamCryptor
dotnet add package StreamCryptor
paket add StreamCryptor
StreamCryptor Download (Unzip the "nupkg" after downloading)
Dependencies
- libsodium-net(>= 0.10.0)
- protobuf-net(>= 2.1.0)
Tags
StreamCryptor uses FileStream to read and write files in chunks, there is also an asynchronous implementations for progress reporting available.
Files are encrypted into SCCEF (StreamCryptor Chunked Encrypted File) format.
Every file contains an EncryptedFileHeader some EncryptedFileChunks and an EncryptedFileFooter to prevent file manipulation.
The file serialization is realised with Google`s protobuf, it has a small overhead and offers an automatic length prefix for all file parts.
All cryptographic operations are performed via libsodium-net (and thus libsodium).
For more details and examples visit the github project site.