From 9f624560ffb625d7766480c4621169025df32c33 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Fri, 31 Jul 2015 15:30:32 +0200 Subject: checking password with cracklib now added printName (the visible name of the user in registration and login) --- src/cracklib.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/cracklib.hpp (limited to 'src/cracklib.hpp') diff --git a/src/cracklib.hpp b/src/cracklib.hpp new file mode 100644 index 0000000..0a7f400 --- /dev/null +++ b/src/cracklib.hpp @@ -0,0 +1,13 @@ +#ifndef CRACKLIB_HPP +#define CRACKLIB_HPP + +#include + +typedef struct PasswordCheck { + bool ok; + std::string msg; +} PasswordCheck; + +PasswordCheck checkPassword( const std::string login, const std::string name, const std::string password ); + +#endif -- cgit v1.2.3-54-g00ecf