UserManager<TUser, TKey>.PasswordHasher Property

 

Gets or sets the property used to hash/verify passwords.

Namespace:   Microsoft.AspNet.Identity
Assembly:  Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)

Syntax

public IPasswordHasher PasswordHasher { get; set; }
public:
property IPasswordHasher^ PasswordHasher {
    IPasswordHasher^ get();
    void set(IPasswordHasher^ value);
}
member PasswordHasher : IPasswordHasher with get, set
Public Property PasswordHasher As IPasswordHasher

Property Value

Type: Microsoft.AspNet.Identity.IPasswordHasher

The property used to hash/verify passwords.

See Also

UserManager<TUser, TKey> Class
Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top