PasswordHasher Class

 

Implements password hashing methods.

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

Inheritance Hierarchy

System.Object
  Microsoft.AspNet.Identity.PasswordHasher

Syntax

public class PasswordHasher : IPasswordHasher
public ref class PasswordHasher : IPasswordHasher
type PasswordHasher = 
    class
        interface IPasswordHasher
    end
Public Class PasswordHasher
    Implements IPasswordHasher

Constructors

Name Description
System_CAPS_pubmethod PasswordHasher()

Initializes a new instance of the PasswordHasher class.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod HashPassword(String)

Hashes a password

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

System_CAPS_pubmethod VerifyHashedPassword(String, String)

Verifies that a password matches the hashed password.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top