summaryrefslogtreecommitdiffstats
path: root/src/shared/password-quality-util.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/shared/password-quality-util.h30
1 files changed, 30 insertions, 0 deletions
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