This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/config.cs

10 lines
249 B
C#
Raw Normal View History

namespace pwt_0x01_ng
{
public static class config
{
public static int min_passwd_length = 2;
public static int min_passwd_unique_chars = 1;
public static bool lockout_on_failure = true;
public static bool remember_me_feature = false;
}
}