Files
Walleby/Wallet/LowercaseRule.cs
T
2024-06-09 14:00:36 +01:00

15 lines
289 B
C#

using System.Text.RegularExpressions;
namespace Wallet;
public partial class LowercaseRule :
IPasswordRule
{
public int CalculateScore(string password) =>
Regex().IsMatch(password) ? 2 : 0;
[GeneratedRegex(@"[a-z]")]
private static partial Regex Regex();
}