PasswordHasher<TUser>.VerifyHashedPassword 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回 , PasswordVerificationResult 指出密碼雜湊比較的結果。
public:
virtual Microsoft::AspNetCore::Identity::PasswordVerificationResult VerifyHashedPassword(TUser user, System::String ^ hashedPassword, System::String ^ providedPassword);
public virtual Microsoft.AspNetCore.Identity.PasswordVerificationResult VerifyHashedPassword (TUser user, string hashedPassword, string providedPassword);
abstract member VerifyHashedPassword : 'User * string * string -> Microsoft.AspNetCore.Identity.PasswordVerificationResult
override this.VerifyHashedPassword : 'User * string * string -> Microsoft.AspNetCore.Identity.PasswordVerificationResult
Public Overridable Function VerifyHashedPassword (user As TUser, hashedPassword As String, providedPassword As String) As PasswordVerificationResult
參數
- user
- TUser
應該驗證其密碼的使用者。
- hashedPassword
- String
使用者預存密碼的雜湊值。
- providedPassword
- String
提供用於比較的密碼。
傳回
, PasswordVerificationResult 表示密碼雜湊比較的結果。
實作
備註
此方法的實作應該保持一致。