From 55944e5e40b1be2afc4855d8d2baf4b73d1876b5 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:49:52 +0200 Subject: Adding upstream version 255.4. Signed-off-by: Daniel Baumann --- src/shared/password-quality-util.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/shared/password-quality-util.h (limited to 'src/shared/password-quality-util.h') diff --git a/src/shared/password-quality-util.h b/src/shared/password-quality-util.h new file mode 100644 index 0000000..f838ba7 --- /dev/null +++ b/src/shared/password-quality-util.h @@ -0,0 +1,30 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +#pragma once + +#define N_SUGGESTIONS 6 + +#if HAVE_PASSWDQC + +#include "password-quality-util-passwdqc.h" + +#elif HAVE_PWQUALITY + +#include "password-quality-util-pwquality.h" + +#else + +static inline int suggest_passwords(void) { + return 0; +} + +static inline int check_password_quality( + const char *password, + const char *old, + const char *username, + char **ret_error) { + if (ret_error) + *ret_error = NULL; + return 1; /* all good */ +} + +#endif -- cgit v1.2.3