Files
Umbraco-CMS/src/Umbraco.Core/Configuration/IPasswordConfiguration.cs

20 lines
514 B
C#
Raw Normal View History

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; }
}
}