-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for spans instead of array copying, added more tests, m…
…ade low-level methods part of the public API
- Loading branch information
Showing
4 changed files
with
116 additions
and
53 deletions.
There are no files selected for viewing
8 changes: 7 additions & 1 deletion
8
src/Aprismatic.Paillier.Homomorphism/Aprismatic.Paillier.Homomorphism.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard1.1;net45</TargetFrameworks> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<Description>Extension for the .NET Framework cryptography subsystem, which introduces the Paillier public key cryptosystem with support for homomorphic addition.</Description> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<Nullable>enable</Nullable> | ||
<AssemblyName>Aprismatic.Paillier.Homomorphism</AssemblyName> | ||
<RootNamespace>Aprismatic.Paillier.Homomorphism</RootNamespace> | ||
<RepositoryUrl>https://github.com/aprismatic/paillier-homomorphism</RepositoryUrl> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters