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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#include "common.h"
LONG WhatsAppProto::GetSerial(void)
{
return ::InterlockedIncrement(&m_serial);
}
std::string getLastErrorMsg()
{
// Retrieve the system error message for the last-error code
LPVOID lpMsgBuf;
DWORD dw = WSAGetLastError();
FormatMessageA(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPSTR)&lpMsgBuf,
0, NULL);
std::string ret((LPSTR)lpMsgBuf);
LocalFree(lpMsgBuf);
return ret;
}
BYTE* utils::md5string(const BYTE *data, int size, BYTE *digest)
{
mir_md5_state_t md5_state;
mir_md5_init(&md5_state);
mir_md5_append(&md5_state, data, size);
mir_md5_finish(&md5_state, digest);
return digest;
}
/////////////////////////////////////////////////////////////////////////////////////////
// external stubs for WhatsAPI++
std::string base64_encode(void* pData, size_t len)
{
return (char*)ptrA(mir_base64_encode((BYTE*)pData, (unsigned)len));
}
void md5_string(const std::string &data, BYTE digest[16])
{
utils::md5string(data, digest);
}
|