IPasswordHasher<TUser> Interfaccia
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Fornisce un'astrazione per l'hashing delle password.
generic <typename TUser>
where TUser : classpublic interface class IPasswordHasher
public interface IPasswordHasher<TUser> where TUser : class
type IPasswordHasher<'User (requires 'User : null)> = interface
Public Interface IPasswordHasher(Of TUser)
Parametri di tipo
- TUser
Tipo utilizzato per rappresentare un utente.
- Derivato
Metodi
HashPassword(TUser, String) |
Restituisce una rappresentazione hash dell'oggetto fornito |
VerifyHashedPassword(TUser, String, String) |
Restituisce un PasswordVerificationResult oggetto che indica il risultato di un confronto hash delle password. |