Crypto.VerifyHashedPassword(String, String) 方法

定义

确定指定的 RFC 2898 哈希和密码是否为加密匹配。

public static bool VerifyHashedPassword (string hashedPassword, string password);
static member VerifyHashedPassword : string * string -> bool
Public Shared Function VerifyHashedPassword (hashedPassword As String, password As String) As Boolean

参数

hashedPassword
String

base-64 编码字符串形式的以前计算的 RFC 2898 哈希值。

password
String

以加密方式与 hashedPassword进行比较的纯文本密码。

返回

如果哈希值是密码的加密匹配项,则为 true;否则为 false。

例外

hashedPasswordpassword 为 null。

适用于