Tweak minimum/maximum password lengths.

This commit is contained in:
LoRd_MuldeR 2021-03-26 01:14:33 +01:00
parent baa6705f85
commit c8cd0fc699
Signed by: mulder
GPG Key ID: 2B5913365F57E03F

View File

@ -66,8 +66,8 @@ static const int SLUNKCRYPT_ABORTED = -2;
/* /*
* Limits * Limits
*/ */
static const size_t SLUNKCRYPT_PWDLEN_MIN = 5U; static const size_t SLUNKCRYPT_PWDLEN_MIN = 8U;
static const size_t SLUNKCRYPT_PWDLEN_MAX = 512U; static const size_t SLUNKCRYPT_PWDLEN_MAX = 256U;
/* /*
* Version info * Version info