-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathStreamCryptor.nuspec
84 lines (78 loc) · 3.38 KB
/
StreamCryptor.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>StreamCryptor</id>
<version>0.5.1</version>
<authors>Christian Hermann</authors>
<owners>Christian Hermann</owners>
<licenseUrl>https://raw.githubusercontent.com/bitbeans/StreamCryptor/master/LICENSE.md</licenseUrl>
<projectUrl>https://github.com/bitbeans/StreamCryptor</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>You can use StreamCryptor to encrypt and decrypt files without size limit and the need to load every file completely into memory.
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.</description>
<summary>Stream encryption & decryption with libsodium and protobuf</summary>
<releaseNotes>0.5.1
* Updated libsodium-net to 10.0.0 (libsodium v.1.0.11)
* Added support for encoding a stream directly without using a file
0.5.0
* Updated libsodium-net to 0.9.0 (libsodium v1.0.7)
0.5.0-beta2
* Changed file name padding to PKCS7
0.5.0-beta1
* GetRandomFileName now uses also libsodium
* Added cancellation support to the async methods
* Updated libsodium-net to 0.9.0-beta3 (libsodium v1.0.3)
0.4.0
* SCCEF Protocol Version 2 (not backward compatible)
* Updated libsodium-net to 0.7.0 (libsodium v.1.0.2)
0.3.2-beta2
* Updated libsodium to 0.7.0-beta2
0.3.2
* Updated libsodium to 0.7.0-beta1 (thread-safe version)
* Added overloaded method to decrypt into memory (experimental)
0.3.1
* Added method to decrypt into memory (experimental)
0.3.0
* Updated libsodium to 0.6.0 (stable)
0.2.5
* Updated libsodium to 0.6.0-beta3
* Fixes PInvokeStackImbalance
0.2.4
* Code improvements
* Updated libsodium to 0.6.0-beta2
0.2.2
* Changed Namespace to Cryptor
* Code improvements
0.2.1
* Updated libsodium to 0.6.0-beta1
0.2
* Added overloads for asynchronous methods
* Changed internal use of synchronous methods
0.1.18
* Added asynchronous methods (beta)
* Changed TargetFrameworkVersion from v4.0 to v4.5
0.1.17
* no release, just more tests
0.1.16
* There was a bug on decrypting files with external private keys
0.1.15
* Changed TargetFrameworkVersion from v4.5 to v4.0</releaseNotes>
<copyright>Copyright (c) 2014 - 2017 Christian Hermann (bitbeans)</copyright>
<language>en-US</language>
<tags>stream encryption protobuf libsodium XSalsa20 Curve25519 Poly1305</tags>
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="libsodium-net" version="0.10.0" />
<dependency id="protobuf-net" version="2.1.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="StreamCryptor\bin\Release\StreamCryptor.dll" target="lib\net45\StreamCryptor.dll" />
</files>
</package>