20 lines
514 B
C#
20 lines
514 B
C#
namespace Umbraco.Core.Configuration
|
|
{
|
|
|
|
/// <summary>
|
|
/// Password configuration
|
|
/// </summary>
|
|
public interface IPasswordConfiguration
|
|
{
|
|
int RequiredLength { get; }
|
|
bool RequireNonLetterOrDigit { get; }
|
|
bool RequireDigit { get; }
|
|
bool RequireLowercase { get; }
|
|
bool RequireUppercase { get; }
|
|
string HashAlgorithmType { get; }
|
|
|
|
// TODO: This doesn't really belong here
|
|
int MaxFailedAccessAttemptsBeforeLockout { get; }
|
|
}
|
|
}
|