在我的ASP.NET應用程序我在web.config中繼DefaultMembershipProvider和SqlMembershipProvider的設置:如何爲ASP.NET身份設置密碼規則?
enablePasswordRetrieval="true"
passwordFormat="Clear"
requiresQuestionAndAnswer="false"
他們所需要的摘要式身份驗證。我想轉移到ASP.NET身份。我正在使用自動化工具來更新我管理的所有web.config文件。
如何在由Visual Studio 2013生成的項目中爲ASP.NET Identity設置這些設置?
密碼檢索通過要求雙向加密,然後以純文本方式中繼憑據,極大地增加了應用程序的弱點。如果可能的話,考慮通過電子郵件來實現密碼重置令牌。 – pwdst
我很確定這是不可能與Digest驗證。 –
我發現了一篇有關自定義密碼策略的2014年文章https://blogs.msdn.microsoft.com/webdev/2014/01/06/implementing-custom-password-policy-using-asp-net-identity/ – oneNiceFriend