From d7e1f0a7bd41afde2443d479b56c89a6861ce207 Mon Sep 17 00:00:00 2001 From: Nemanja Mijailovic Date: Sun, 28 Oct 2018 13:56:13 +0100 Subject: [PATCH] Bump the version and add summary --- README.md | 2 +- docs/index.html | 2 +- docs/manifest.json | 6 +++--- index.md | 2 +- src/Cryptography/Cryptography.csproj | 5 +++-- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 62e93c4..97a389a 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ using (var siv = new AesGcmSiv(key)) ## Installation ``` -> dotnet add package AES-GCM-SIV --version 0.3.0 +> dotnet add package AES-GCM-SIV --version 0.3.1 ``` ## Acknowledgements diff --git a/docs/index.html b/docs/index.html index 92a82c8..6e632d9 100644 --- a/docs/index.html +++ b/docs/index.html @@ -113,7 +113,7 @@

Usage

}

Installation

-
> dotnet add package AES-GCM-SIV --version 0.3.0
+
> dotnet add package AES-GCM-SIV --version 0.3.1
 

Acknowledgements

This implementation is based on the C intrinsics code written by Shay Gueron.

diff --git a/docs/manifest.json b/docs/manifest.json index b38e1c8..e48b43b 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -12,7 +12,7 @@ "hash": "UpT1L9rGz3coly6Ol3XqjQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -24,7 +24,7 @@ "hash": "As9gur98EnzD5kklEA1kfQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -33,7 +33,7 @@ "output": { ".html": { "relative_path": "index.html", - "hash": "ogwPjlvvVeqsRc8LH9GolQ==" + "hash": "eOVpkmOFiHNuWElX27toyQ==" } }, "is_incremental": false, diff --git a/index.md b/index.md index 3d7533f..b311779 100644 --- a/index.md +++ b/index.md @@ -70,7 +70,7 @@ using (var siv = new AesGcmSiv(key)) ## Installation ``` -> dotnet add package AES-GCM-SIV --version 0.3.0 +> dotnet add package AES-GCM-SIV --version 0.3.1 ``` ## Acknowledgements diff --git a/src/Cryptography/Cryptography.csproj b/src/Cryptography/Cryptography.csproj index 7ef6051..9496a3b 100644 --- a/src/Cryptography/Cryptography.csproj +++ b/src/Cryptography/Cryptography.csproj @@ -7,8 +7,8 @@ true AES-GCM-SIV AES-GCM-SIV - 0.3.0 - 0.3.0.0 + 0.3.1 + 0.3.1.0 Nemanja Mijailovic https://github.com/Metalnem/aes-gcm-siv.git git @@ -17,6 +17,7 @@ $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb https://raw.githubusercontent.com/Metalnem/aes-gcm-siv/master/LICENSE C# implementation of AES-GCM-SIV nonce misuse-resistant authenticated encryption + C# implementation of AES-GCM-SIV nonce misuse-resistant authenticated encryption. Fastest available authenticated encryption library for .NET Core, with the encryption/decryption rate of roughly 8 Gbps/core. Implemented using .NET Core 3.0 platform intrinsics. false Copyright © 2018, Nemanja Mijailovic crypto cryptography security encryption aes aes-gcm-siv aead simd intrinsics