aspnetcore/src/Core/PasswordVerificationResult.cs

27 lines
851 B
C#

// 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
{
/// <summary>
/// Specifies the results for password verification.
/// </summary>
public enum PasswordVerificationResult
{
/// <summary>
/// Indicates password verification failed.
/// </summary>
Failed = 0,
/// <summary>
/// Indicates password verification was successful.
/// </summary>
Success = 1,
/// <summary>
/// Indicates password verification was successful however the password was encoded using a deprecated algorithm
/// and should be rehashed and updated.
/// </summary>
SuccessRehashNeeded = 2
}
}