From 974af7e3663c5f72091f8afd91e4ed732c42b20c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 26 Feb 2015 13:09:29 +0300 Subject: login: add way to check hashed passwords in old tmw/evol way. --- src/login/login.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/login/login.c (limited to 'src/login/login.c') diff --git a/src/login/login.c b/src/login/login.c new file mode 100644 index 0000000..bee7aa2 --- /dev/null +++ b/src/login/login.c @@ -0,0 +1,30 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 Evol developers + +#include +#include +#include + +#include "../../../common/HPMi.h" +#include "../../../common/malloc.h" +#include "../../../common/mmo.h" +#include "../../../common/socket.h" +#include "../../../common/strlib.h" +#include "../../../login/login.h" + +#include "login/md5calc.h" + +bool elogin_check_password(const char* md5key __attribute__ ((unused)), + int *passwdenc __attribute__ ((unused)), + const char* passwd, + const char* refpass) +{ + if (!strcmp(passwd, refpass) || pass_ok(passwd, refpass)) + { + hookStop(); + return 1; + } + + hookStop(); + return 0; +} -- cgit v1.2.3-70-g09d2