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
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 DNX. On DNX the new ASP.NET 5 Data Protection stack is used. Where as classic .NET 4.0 and 4.5 applications will use `Rfc2898DeriveBytes`
13
13
14
14
<hr>
15
15
16
-
#### [Download CryptoHelper on NuGet](https://www.nuget.org/packages/CryptoHelper)
16
+
## Installation
17
+
18
+
#### Add the [CryptoHelper NuGet package](https://www.nuget.org/packages/CryptoHelper) to your project
19
+
Add this to your `project.json`:
20
+
```json
21
+
"dependencies": {
22
+
"CryptoHelper": "1.0.0-rc1-*"
23
+
}
24
+
```
17
25
18
26
--
19
27
20
-
#### Download using the NuGet Package Manager Console:
28
+
#### Download using the NuGet Package Manager Console
0 commit comments