Skip to content

Commit 3bece24

Browse files
committed
Update README to reference RC2
1 parent 6a6386c commit 3bece24

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CryptoHelper
2-
:key: Cryptography helper methods for hashing passwords using a PBKDF2 implementation.
2+
:key: Cryptography helper methods for hashing passwords on .NET Core using a PBKDF2 implementation.
33

44
<hr>
55

@@ -9,7 +9,7 @@
99

1010
--
1111

12-
This utility ports the password hashing functionality from the [`System.Web.Helpers.Crypto`](http://aspnetwebstack.codeplex.com/SourceControl/latest#src/System.Web.Helpers/Crypto.cs) class to .NET Core, without a dependency on ASP.NET Identity. On .NET Core the new ASP.NET 5 [Data Protection](https://github.com/aspnet/DataProtection) stack is used. Where as classic .NET 4.0 and 4.5 applications will use `Rfc2898DeriveBytes`
12+
This utility ports the password hashing functionality from the [`System.Web.Helpers.Crypto`](http://aspnetwebstack.codeplex.com/SourceControl/latest#src/System.Web.Helpers/Crypto.cs) class to .NET Core, without a dependency on ASP.NET Identity. On .NET Core the new ASP.NET Core [Data Protection](https://github.com/aspnet/DataProtection) stack is used. Where as classic .NET 4.0 and 4.5 applications will use `Rfc2898DeriveBytes`
1313

1414
<hr>
1515

@@ -19,12 +19,10 @@ This utility ports the password hashing functionality from the [`System.Web.Hel
1919
Add this to your `project.json`:
2020
```json
2121
"dependencies": {
22-
"CryptoHelper": "1.0.0-rc1-final"
22+
"CryptoHelper": "1.0.0-rc2-final"
2323
}
2424
```
2525

26-
There is also an RC2 build available: `1.0.0-rc2-*`.
27-
2826
--
2927

3028
#### Download using the NuGet Package Manager Console

0 commit comments

Comments
 (0)