So is it still possible to decrypt the password?
I've loaded function from steam.dll like this one:
Code:
typedef bool (WINAPI *steam)(char*,int,char*,int,int*);
steam steamDecrypt = NULL;
HINSTANCE hLib;
hLib = LoadLibrary("Steam.dll");
steamDecrypt = (steam)GetProcAddress(hLib, "SteamDecryptDataForThisMachine");
Correct the code if it is bad.
Code:
int len = 0;
char encoded[256];
char decoded[256];
strcpy(encoded, "FILL IT HERE");
steamDecrypt(encoded, strlen(encoded), decoded, sizeof(decoded), &len)
How to get "FILL IT HERE" which was encrypted password now?