2025-01-03 00:14:12 +01:00
|
|
|
using DotBased.AspNet.Authority.Managers;
|
2025-01-08 15:55:00 +01:00
|
|
|
using DotBased.AspNet.Authority.Models.Authority;
|
2024-12-25 22:50:04 +01:00
|
|
|
using DotBased.AspNet.Authority.Models.Validation;
|
|
|
|
|
2024-12-23 01:26:21 +01:00
|
|
|
namespace DotBased.AspNet.Authority.Validators;
|
|
|
|
|
2025-01-08 15:55:00 +01:00
|
|
|
public interface IPasswordValidator
|
2024-12-23 01:26:21 +01:00
|
|
|
{
|
2025-01-08 16:06:25 +01:00
|
|
|
public Task<ValidationResult> ValidatePasswordAsync(AuthorityManager manager, AuthorityUser user, string password);
|
2024-12-23 01:26:21 +01:00
|
|
|
}
|