TPasswordOptions Class
Defines the password policy options for user accounts. This class contains settings that determine the complexity requirements for passwords, including length and character diversity.
Syntax
Unit: Sphinx.Options
TPasswordOptions = class(TPersistent);
Properties
Name | Description |
---|---|
RequiredLength | The minimum length required for passwords. |
RequireLowercase | Determines if at least one lowercase letter is required in passwords. |
RequireUppercase | Specifies if at least one uppercase letter must be included in passwords. |
RequireDigit | Indicates whether passwords must contain at least one digit. |
RequireNonAlphanumeric | Controls the requirement for at least one non-alphanumeric character in passwords. |