You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-5
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# 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.
3
3
4
4
<hr>
5
5
@@ -9,7 +9,7 @@
9
9
10
10
--
11
11
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`
13
13
14
14
<hr>
15
15
@@ -19,12 +19,10 @@ This utility ports the password hashing functionality from the [`System.Web.Hel
19
19
Add this to your `project.json`:
20
20
```json
21
21
"dependencies": {
22
-
"CryptoHelper": "1.0.0-rc1-final"
22
+
"CryptoHelper": "1.0.0-rc2-final"
23
23
}
24
24
```
25
25
26
-
There is also an RC2 build available: `1.0.0-rc2-*`.
27
-
28
26
--
29
27
30
28
#### Download using the NuGet Package Manager Console
0 commit comments