Skip to content

Commit

Permalink
Nuget 0.3.0
Browse files Browse the repository at this point in the history
- Updates libsodium-net to 0.6.0
- Updates README
- Updates nuspec
  • Loading branch information
bitbeans committed Oct 9, 2014
1 parent 4231c3d commit f32fa05
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# StreamCryptor [![Build status](https://ci.appveyor.com/api/projects/status/73fb5hecxx9xjyip)](https://ci.appveyor.com/project/bitbeans/streamcryptor) [![Build Status](https://travis-ci.org/bitbeans/StreamCryptor.svg?branch=master)](https://travis-ci.org/bitbeans/StreamCryptor)
# StreamCryptor [![Build status](https://img.shields.io/appveyor/ci/bitbeans/StreamCryptor.svg?style=flat-square)](https://ci.appveyor.com/project/bitbeans/streamcryptor) [![Build Status](https://img.shields.io/travis/bitbeans/StreamCryptor.svg?style=flat-square)](https://travis-ci.org/bitbeans/StreamCryptor) [![NuGet Version](https://img.shields.io/nuget/v/StreamCryptor.svg?style=flat-square)](https://www.nuget.org/packages/StreamCryptor/) [![License](http://img.shields.io/badge/license-MIT-green.svg?style=flat-square)](https://github.com/bitbeans/StreamCryptor/blob/master/LICENSE)
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: [example](../master/examples/DemoAsync.md).

Expand Down
8 changes: 5 additions & 3 deletions StreamCryptor.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>StreamCryptor</id>
<version>0.2.5-beta</version>
<version>0.3.0</version>
<authors>Christian Hermann</authors>
<owners>Christian Hermann</owners>
<licenseUrl>https://raw.githubusercontent.com/bitbeans/StreamCryptor/master/LICENSE</licenseUrl>
Expand All @@ -21,7 +21,9 @@ All cryptographic operations are performed via libsodium-net (and thus libsodium

For more details visit the project site.</description>
<summary>Stream encryption &amp; decryption with libsodium and protobuf</summary>
<releaseNotes>0.2.5
<releaseNotes>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
Expand Down Expand Up @@ -50,7 +52,7 @@ For more details visit the project site.</description>
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="protobuf-net" version="2.0.0.668" />
<dependency id="libsodium-net" version="0.6.0-beta3" />
<dependency id="libsodium-net" version="0.6.0" />
</group>
</dependencies>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions StreamCryptor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.2.5.0")]
[assembly: AssemblyFileVersion("0.2.5.0")]
[assembly: AssemblyVersion("0.3.0.0")]
[assembly: AssemblyFileVersion("0.3.0.0")]
2 changes: 1 addition & 1 deletion StreamCryptor/StreamCryptor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
</Reference>
<Reference Include="Sodium, Version=0.6.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\libsodium-net.0.6.0-beta3\lib\Net40\Sodium.dll</HintPath>
<HintPath>..\packages\libsodium-net.0.6.0\lib\Net40\Sodium.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
2 changes: 1 addition & 1 deletion StreamCryptor/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Baseclass.Contrib.Nuget.Output" version="1.0.7" targetFramework="net45" />
<package id="libsodium-net" version="0.6.0-beta3" targetFramework="net45" />
<package id="libsodium-net" version="0.6.0" targetFramework="net45" />
<package id="protobuf-net" version="2.0.0.668" targetFramework="net45" />
</packages>
2 changes: 1 addition & 1 deletion Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</Reference>
<Reference Include="Sodium, Version=0.6.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\libsodium-net.0.6.0-beta1\lib\Net40\Sodium.dll</HintPath>
<HintPath>..\packages\libsodium-net.0.6.0\lib\Net40\Sodium.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
2 changes: 1 addition & 1 deletion Tests/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Baseclass.Contrib.Nuget.Output" version="1.0.7" targetFramework="net45" />
<package id="libsodium-net" version="0.6.0-beta1" targetFramework="net45" />
<package id="libsodium-net" version="0.6.0" targetFramework="net45" />
<package id="NUnit" version="2.6.3" targetFramework="net45" />
</packages>

0 comments on commit f32fa05

Please sign in to comment.