// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNet.Identity
{
///
/// Return result for IPasswordHasher
///
public enum PasswordVerificationResult
{
///
/// Password verification failed
///
Failed = 0,
///
/// Success
///
Success = 1,
///
/// Success but should update and rehash the password
///
SuccessRehashNeeded = 2
}
}