We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f267cc commit 20f3b16Copy full SHA for 20f3b16
README.md
@@ -7,7 +7,8 @@ An implementation of IPasswordHasher<TUser> using [Scrypt.NET](https://github.co
7
## Installation
8
9
```
10
-services.AddScoped<IPasswordHasher<ApplicationUser>, ScryptPasswordHasher<ApplicationUser>>();
+services.AddIdentity<TUser, TRole>();
11
+services.AddScoped<IPasswordHasher<TUser>, ScryptPasswordHasher<TUser>>();
12
13
14
### Options
0 commit comments