Skip to content

Commit 476f7df

Browse files
committed
v3.2.1 - set deterministic false fixes #47
1 parent b12c467 commit 476f7df

7 files changed

Lines changed: 18 additions & 6 deletions

dists/BCrypt.Net-Next.3.2.1.nupkg

156 KB
Binary file not shown.
175 KB
Binary file not shown.
156 KB
Binary file not shown.
176 KB
Binary file not shown.

src/BCrypt.Net.MainPackage/BCrypt.Net.Package.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageId>BCrypt.Net-Next</PackageId>
1313
<Title>BCrypt .Net</Title>
1414
<Authors>Chris McKee, Ryan D. Emerl, Damien Miller</Authors>
15-
<Copyright>2006-2018 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
15+
<Copyright>2006-2019 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
1616
<Summary>BCrypt.Net, C# implementation of BCrypt, OpenBSD-style Blowfish password hashing</Summary>
1717
<Description>A fixed, enhanced and namespace compatible version of BCrypt.Net port of jBCrypt implemented in C#. It uses a variant of the Blowfish encryption algorithm’s keying schedule, and introduces a work factor, which allows you to determine how expensive the hash function will be, allowing the algorithm to be "future-proof".</Description>
1818
<License>https://github.com/BcryptNet/bcrypt.net/blob/master/licence.txt</License>
@@ -22,10 +22,14 @@
2222
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
2323
<AssemblyOriginatorKeyFile>../bcrypt.pfx</AssemblyOriginatorKeyFile>
2424

25-
<Version>3.2.0</Version>
25+
<Version>3.2.1</Version>
2626
<PackageTags>bcrypt;BCrypt.Net;cryptography;hashing;password;security,hash;crypto;blowfish;gdpr</PackageTags>
2727
</PropertyGroup>
2828

29+
<PropertyGroup>
30+
<Deterministic>false</Deterministic>
31+
</PropertyGroup>
32+
2933
<ItemGroup>
3034
<Compile Include="..\BCrypt.Net\**\*.cs" Exclude="..\BCrypt.Net\obj\**\*.cs" />
3135
</ItemGroup>

src/BCrypt.Net.StrongName/BCrypt.Net.StrongName.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageId>BCrypt.Net-Next.StrongName</PackageId>
1313
<Title>BCrypt .Net (Strong Named)</Title>
1414
<Authors>Chris McKee, Ryan D. Emerl, Damien Miller</Authors>
15-
<Copyright>2006-2018 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
15+
<Copyright>2006-2019 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
1616
<Summary>BCrypt.Net, C# implementation of BCrypt, OpenBSD-style Blowfish password hashing</Summary>
1717
<Description>A fixed, enhanced and namespace compatible version of BCrypt.Net port of jBCrypt implemented in C#. It uses a variant of the Blowfish encryption algorithm’s keying schedule, and introduces a work factor, which allows you to determine how expensive the hash function will be, allowing the algorithm to be "future-proof".</Description>
1818
<License>https://github.com/BcryptNet/bcrypt.net/blob/master/licence.txt</License>
@@ -22,10 +22,14 @@
2222
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
2323
<AssemblyOriginatorKeyFile>../bcrypt.pfx</AssemblyOriginatorKeyFile>
2424

25-
<Version>3.2.0</Version>
25+
<Version>3.2.1</Version>
2626
<PackageTags>bcrypt;BCrypt.Net;cryptography;hashing;password;security,hash;crypto;blowfish;gdpr</PackageTags>
2727
</PropertyGroup>
2828

29+
<PropertyGroup>
30+
<Deterministic>false</Deterministic>
31+
</PropertyGroup>
32+
2933
<ItemGroup>
3034
<Compile Include="..\BCrypt.Net\**\*.cs" Exclude="..\BCrypt.Net\obj\**\*.cs" />
3135
</ItemGroup>

src/BCrypt.Net/BCrypt.Net.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,18 @@
1212
<PackageId>BCrypt.Net-Next</PackageId>
1313
<Title>BCrypt .Net</Title>
1414
<Authors>Chris McKee, Ryan D. Emerl, Damien Miller</Authors>
15-
<Copyright>2006-2018 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
15+
<Copyright>2006-2019 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
1616
<Summary>BCrypt.Net, C# implementation of BCrypt, OpenBSD-style Blowfish password hashing</Summary>
1717
<Description>A fixed, enhanced and namespace compatible version of BCrypt.Net port of jBCrypt implemented in C#. It uses a variant of the Blowfish encryption algorithm’s keying schedule, and introduces a work factor, which allows you to determine how expensive the hash function will be, allowing the algorithm to be "future-proof".</Description>
1818
<PackageTags>bcrypt;BCrypt.Net;cryptography;hashing;password;security,hash;crypto;blowfish;gdpr</PackageTags>
1919
<License>https://github.com/BcryptNet/bcrypt.net/blob/master/licence.txt</License>
2020
<PackageLicenseUrl>https://github.com/BcryptNet/bcrypt.net/blob/master/licence.txt</PackageLicenseUrl>
2121

22-
<Version>3.2.0</Version>
22+
<Version>3.2.1</Version>
23+
</PropertyGroup>
24+
25+
<PropertyGroup>
26+
<Deterministic>false</Deterministic>
2327
</PropertyGroup>
2428

2529
<PropertyGroup Condition="'$(TargetFramework)' == 'net20' ">

0 commit comments

Comments
 (0)