// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNetCore.Identity { /// /// Specifies the format used for hashing passwords. /// public enum PasswordHasherCompatibilityMode { /// /// Indicates hashing passwords in a way that is compatible with ASP.NET Identity versions 1 and 2. /// IdentityV2, /// /// Indicates hashing passwords in a way that is compatible with ASP.NET Identity version 3. /// IdentityV3 } }