wireless profile saving problem please help me out
- by Jayjitraj
DATA_BLOB in;
DATA_BLOB out;
BYTE pin=(BYTE)"FIPL2";
DWORD din=strlen((char*)pin)+1;
in.pbData = pin;
in.cbData = din;
if(CryptProtectData(&in,L"what is it",NULL,NULL,NULL,0,&out))
{
BYTE *b=out.pbData;
Now I want to convert it into hexadecimal to save as my wifi password so what should i do
}