Skip to content
This repository has been archived by the owner on Jun 23, 2020. It is now read-only.

Commit

Permalink
Bump the version and add summary
Browse files Browse the repository at this point in the history
  • Loading branch information
Metalnem committed Oct 28, 2018
1 parent a8a32fe commit d7e1f0a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ <h2 id="usage">Usage</h2>
}
</code></pre>
<h2 id="installation">Installation</h2>
<pre><code>&gt; dotnet add package AES-GCM-SIV --version 0.3.0
<pre><code>&gt; dotnet add package AES-GCM-SIV --version 0.3.1
</code></pre>
<h2 id="acknowledgements">Acknowledgements</h2>
<p>This implementation is based on the <a href="https://github.com/Shay-Gueron/AES-GCM-SIV">C intrinsics code</a> written by Shay Gueron.</p>
Expand Down
6 changes: 3 additions & 3 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"hash": "UpT1L9rGz3coly6Ol3XqjQ=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand All @@ -24,7 +24,7 @@
"hash": "As9gur98EnzD5kklEA1kfQ=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand All @@ -33,7 +33,7 @@
"output": {
".html": {
"relative_path": "index.html",
"hash": "ogwPjlvvVeqsRc8LH9GolQ=="
"hash": "eOVpkmOFiHNuWElX27toyQ=="
}
},
"is_incremental": false,
Expand Down
2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions src/Cryptography/Cryptography.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>AES-GCM-SIV</PackageId>
<Title>AES-GCM-SIV</Title>
<PackageVersion>0.3.0</PackageVersion>
<AssemblyVersion>0.3.0.0</AssemblyVersion>
<PackageVersion>0.3.1</PackageVersion>
<AssemblyVersion>0.3.1.0</AssemblyVersion>
<Authors>Nemanja Mijailovic</Authors>
<RepositoryUrl>https://github.com/Metalnem/aes-gcm-siv.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand All @@ -17,6 +17,7 @@
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<PackageLicenseUrl>https://raw.githubusercontent.com/Metalnem/aes-gcm-siv/master/LICENSE</PackageLicenseUrl>
<Description>C# implementation of AES-GCM-SIV nonce misuse-resistant authenticated encryption</Description>
<Summary>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.</Summary>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>Copyright © 2018, Nemanja Mijailovic</Copyright>
<PackageTags>crypto cryptography security encryption aes aes-gcm-siv aead simd intrinsics</PackageTags>
Expand Down

0 comments on commit d7e1f0a

Please sign in to comment.