@@ -94,7 +94,7 @@
//结果格式化
"formatResult": true
},
- //实现标准标识密码哈希
+ //实现标准标识密码哈希,相同密码加密后各不相同
"passwordHasher": false,
//最大请求大小
"maxRequestBodySize": 104857600,
@@ -69,6 +69,7 @@ public class RegisterModule : Module
.InterceptedBy(interceptorServiceTypes.ToArray())
.EnableClassInterceptors();
+ //密码哈希泛型注入
builder.RegisterGeneric(typeof(PasswordHasher<>)).As(typeof(IPasswordHasher<>)).SingleInstance().PropertiesAutowired();
//仓储泛型注入