summaryrefslogtreecommitdiff
path: root/src/login/login.c
blob: bee7aa2cd7bf017b45be3c10b0ac8cd08b148174 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 Evol developers

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#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;
}