Skip to content

Commit 51a21ca

Browse files
committed
Update README.md
1 parent bc32f79 commit 51a21ca

File tree

1 file changed

+4
-18
lines changed

1 file changed

+4
-18
lines changed

README.md

+4-18
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,22 @@
77
| --- | --- | --- |
88
| [![Build status](https://ci.appveyor.com/api/projects/status/hai0kndijmx6xb9d?svg=true)](https://ci.appveyor.com/project/henkmollema/cryptohelper) | [![Build Status](https://travis-ci.org/henkmollema/CryptoHelper.svg)](https://travis-ci.org/henkmollema/CryptoHelper) | [![Build Status](https://travis-ci.org/henkmollema/CryptoHelper.svg)](https://travis-ci.org/henkmollema/CryptoHelper) |
99

10-
--
11-
This utility provides a standalone password hasher for ASP.NET Core without a dependency on ASP.NET Identity. The passwords are hashed using the new [Data Protection](https://github.com/aspnet/DataProtection) stack.
12-
1310
<hr>
1411

15-
## Installation
12+
This utility provides a standalone password hasher for ASP.NET Core without a dependency on ASP.NET Identity. The passwords are hashed using the new [Data Protection](https://github.com/aspnet/DataProtection) stack.
1613

17-
#### Add the [CryptoHelper NuGet package](https://www.nuget.org/packages/CryptoHelper) to your project
18-
Add this to your `project.json`:
19-
```json
20-
"dependencies": {
21-
"CryptoHelper": "2.1.1"
22-
}
23-
```
14+
<hr>
2415

25-
--
16+
## Download
2617

27-
#### Download using the NuGet Package Manager Console
28-
```
29-
Install-Package CryptoHelper -Pre
30-
```
18+
CryptoHelper is available on [NuGet](https://www.nuget.org/packages/CryptoHelper).
3119

3220
<hr>
3321

3422
## Usage
3523
```csharp
3624
using CryptoHelper;
3725

38-
// ...
39-
4026
// Hash a password
4127
public string HashPassword(string password)
4228
{

0 commit comments

Comments
 (0)