using System;
using System.Collections.Generic;
using System.Text;
namespace OFBButte.Infrastructure.Hashing
{
//
/// Specifies the results for password verification.
///
public enum PasswordVerificationResult
{
///
/// Indicates password verification failed.
///
Failed = 0,
///
/// Indicates password verification was successful.
///
Success = 1,
///
/// Indicates password verification was successful however the password was encoded using a deprecated algorithm
/// and should be rehashed and updated.
///
SuccessRehashNeeded = 2
}
}