01-09-2017, 08:15 PM
Hi,
where can i find the password hash function ?
|
Login Hash
|
|
01-09-2017, 08:15 PM
Hi, where can i find the password hash function ?
01-09-2017, 10:51 PM
What exactly are you trying to do, change it?
01-09-2017, 10:56 PM
For example, yes.
01-10-2017, 01:33 PM
Engine\Base\md5.h void md5_buffer(const char *buffer, const unsigned int buf_len, void *signature); This one was used in old client but still a nice example if you wanna encrypt your password in client side. (recommended) Engine\Interface\UILogin.cpp md5_buffer(m_strUserPW, m_strUserPW.Length(), tmpPass); Current LC uses ShareLib in server side to encrypt a password (Client -> Clean Password Packet (_pNetwork->SendLoginMessage) -> Server -> Encrypt)
01-10-2017, 03:48 PM
ShareLib\CheckPassword.cpp bool CCheckPassword::checkPass(const std: tring& pass, const std: tring& dbpass)
01-10-2017, 04:56 PM
Thanks a lot ![]() Can be closed.
01-10-2017, 09:36 PM
Locked.
|
|
« Next Oldest | Next Newest »
|