We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f83167 commit 056adddCopy full SHA for 056addd
README.md
@@ -4,15 +4,19 @@ An implementation of IPasswordHasher<TUser> using [BCrypt.NET - next](https://gi
4
5
## Installation
6
7
-`services.AddScoped<IPasswordHasher<ApplicationUser>, BCryptPasswordHasher<ApplicationUser>>();`
+```
8
+services.AddScoped<IPasswordHasher<ApplicationUser>, BCryptPasswordHasher<ApplicationUser>>();
9
10
11
### Options
12
- - *WorkFactor*: int
- - *EnhancedEntropy*: bool
13
+ - **WorkFactor**: int
14
+ - **EnhancedEntropy**: bool
15
16
Register with:
-`services.Configure<BCryptPasswordHasherOptions>(options => {
17
18
+services.Configure<BCryptPasswordHasherOptions>(options => {
19
options.WorkFactor = 10;
20
options.EnhancedEntropy = false;
-});`
21
+});
22
0 commit comments