Files
Umbraco-CMS/src/Umbraco.Core/Configuration/IPasswordConfiguration.cs
2020-03-19 19:09:33 +01:00

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