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)

