Skip to content

Commit

Permalink
Add CryptoHelper.StrongName package
Browse files Browse the repository at this point in the history
  • Loading branch information
henkmollema committed Feb 3, 2018
1 parent 9269855 commit a3ab9f5
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 15 deletions.
19 changes: 19 additions & 0 deletions CryptoHelper.sln
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{D7466811-2
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CryptoHelper.Tests", "test\CryptoHelper.Tests\CryptoHelper.Tests.csproj", "{F4D8F18C-6809-4CE4-BBBA-1801B2710987}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CryptoHelper.StrongName", "src\CryptoHelper.StrongName\CryptoHelper.StrongName.csproj", "{29D3296B-5C26-4A51-AD85-28D34C3F8D96}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{05BFEEDB-1E36-4A70-BADA-07D68CEF8862}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Expand All @@ -30,12 +36,25 @@ Global
{F4D8F18C-6809-4CE4-BBBA-1801B2710987}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F4D8F18C-6809-4CE4-BBBA-1801B2710987}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F4D8F18C-6809-4CE4-BBBA-1801B2710987}.Release|Any CPU.Build.0 = Release|Any CPU
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Debug|Any CPU.Build.0 = Debug|Any CPU
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Debug|x64.ActiveCfg = Debug|x64
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Debug|x64.Build.0 = Debug|x64
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Debug|x86.ActiveCfg = Debug|x86
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Debug|x86.Build.0 = Debug|x86
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Release|Any CPU.ActiveCfg = Release|Any CPU
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Release|Any CPU.Build.0 = Release|Any CPU
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Release|x64.ActiveCfg = Release|x64
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Release|x64.Build.0 = Release|x64
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Release|x86.ActiveCfg = Release|x86
{29D3296B-5C26-4A51-AD85-28D34C3F8D96}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{05BFEEDB-1E36-4A70-BADA-07D68CEF8862} = {AE91DAF8-4A94-4A25-BA27-87F603FBCD4B}
{F4D8F18C-6809-4CE4-BBBA-1801B2710987} = {D7466811-2D0F-4015-9480-E97D32BD1EEA}
{29D3296B-5C26-4A51-AD85-28D34C3F8D96} = {AE91DAF8-4A94-4A25-BA27-87F603FBCD4B}
EndGlobalSection
EndGlobal
Binary file added CryptoHelper.snk
Binary file not shown.
18 changes: 18 additions & 0 deletions Directory.build.props
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>
8 changes: 8 additions & 0 deletions src/CryptoHelper.StrongName/CryptoHelper.StrongName.csproj
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>
17 changes: 2 additions & 15 deletions src/CryptoHelper/CryptoHelper.csproj
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>
1 change: 1 addition & 0 deletions test/CryptoHelper.Tests/CryptoHelper.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\CryptoHelper\CryptoHelper.csproj" />
Expand Down

0 comments on commit a3ab9f5

Please sign in to comment.