Skip to content

Commit

Permalink
Remove 3.1.1; push 3.1.2 add missing files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMcKee committed Dec 15, 2018
1 parent 484add9 commit 1a4a2a2
Show file tree
Hide file tree
Showing 13 changed files with 10 additions and 2 deletions.
Binary file removed dists/BCrypt.Net-Next.3.1.1.nupkg
Binary file not shown.
Binary file removed dists/BCrypt.Net-Next.3.1.1.symbols.nupkg
Binary file not shown.
Binary file added dists/BCrypt.Net-Next.3.1.2.nupkg
Binary file not shown.
Binary file added dists/BCrypt.Net-Next.3.1.2.symbols.nupkg
Binary file not shown.
Binary file removed dists/BCrypt.Net-Next.StrongName.3.1.1.nupkg
Binary file not shown.
Binary file not shown.
Binary file added dists/BCrypt.Net-Next.StrongName.3.1.2.nupkg
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# NOTICE 3.1.1 IS BROKEN, USE 3.1.2

# bcrypt.net - next

Porting of bcrypt.codeplex.com with enhanced security, missing fixes, features and better .net support.
Expand Down
2 changes: 1 addition & 1 deletion src/BCrypt.Net.MainPackage/BCrypt.Net.Package.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<AssemblyOriginatorKeyFile>../bcrypt.pfx</AssemblyOriginatorKeyFile>

<Version>3.1.1</Version>
<Version>3.1.2</Version>
<PackageTags>bcrypt;BCrypt.Net;cryptography;hashing;password;security,hash;crypto;blowfish;gdpr</PackageTags>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/BCrypt.Net.StrongName/BCrypt.Net.StrongName.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<AssemblyOriginatorKeyFile>../bcrypt.pfx</AssemblyOriginatorKeyFile>

<Version>3.1.1</Version>
<Version>3.1.2</Version>
<PackageTags>bcrypt;BCrypt.Net;cryptography;hashing;password;security,hash;crypto;blowfish;gdpr</PackageTags>
</PropertyGroup>

Expand Down
6 changes: 6 additions & 0 deletions src/BCrypt.Net.UnitTests/BCryptTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ public class BCryptTests

readonly char[] _revisions = new char[] { 'a', 'x', 'y', 'b' };

[Fact]
public void GithubIssue()
{
Assert.True(BCrypt.Verify("root", "$2a$11$QyLpYkKKG9oNIl2rbZ9X0OgxxbWYZjPZUFN/kuJ4DDywo20WgK3iu"));
}

/*
* Test to confirm correctness of input key truncation https://github.com/BcryptNet/bcrypt.net/issues/18
* Test vars from https://security.stackexchange.com/questions/39849/does-bcrypt-have-a-maximum-password-length/39851#39851
Expand Down
Binary file added src/bcrypt.pfx
Binary file not shown.

0 comments on commit 1a4a2a2

Please sign in to comment.