forked from henkmollema/CryptoHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9269855
commit a3ab9f5
Showing
6 changed files
with
48 additions
and
15 deletions.
There are no files selected for viewing
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
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Description>Standalone password hasher for ASP.NET Core using a PBKDF2 implementation.</Description> | ||
<Copyright>Copyright 2017 Henk Mollema</Copyright> | ||
<VersionPrefix>3.0.0</VersionPrefix> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<Authors>Henk Mollema</Authors> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageTags>hashing;crypto;core;PBKDF2;Rfc2898DeriveBytes</PackageTags> | ||
<PackageProjectUrl>https://github.com/henkmollema/CryptoHelper</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/henkmollema/CryptoHelper/blob/master/LICENSE</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>git://github.com/henkmollema/CryptoHelper</RepositoryUrl> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="2.0.0" /> | ||
</ItemGroup> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<PackageId>CryptoHelper.StrongName</PackageId> | ||
<AssemblyOriginatorKeyFile>../../CryptoHelper.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,5 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<Description>Standalone password hasher for ASP.NET Core using a PBKDF2 implementation.</Description> | ||
<Copyright>Copyright 2017 Henk Mollema</Copyright> | ||
<VersionPrefix>3.0.0</VersionPrefix> | ||
<Authors>Henk Mollema</Authors> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageTags>hashing;crypto;core;PBKDF2;Rfc2898DeriveBytes</PackageTags> | ||
<PackageProjectUrl>https://github.com/henkmollema/CryptoHelper</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/henkmollema/CryptoHelper/blob/master/LICENSE</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>git://github.com/henkmollema/CryptoHelper</RepositoryUrl> | ||
<PackageId>CryptoHelper</PackageId> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="2.0.0" /> | ||
</ItemGroup> | ||
</Project> | ||
</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