wireless profile saving problem please help me out
Posted
by Jayjitraj
on Stack Overflow
See other posts from Stack Overflow
or by Jayjitraj
Published on 2010-03-13T13:19:54Z
Indexed on
2010/03/13
13:25 UTC
Read the original article
Hit count: 253
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 }
© Stack Overflow or respective owner