۱۴-فروردین-۱۳۹۴, ۰۴:۲۶:۵۳
سلام
معادل کد زیر در دلفی چطوری میشه؟ یعنی چطوری کد زیر به دلفی تبدیل کنم که درست کار کنه؟؟
معادل کد زیر در دلفی چطوری میشه؟ یعنی چطوری کد زیر به دلفی تبدیل کنم که درست کار کنه؟؟
کد:
// Decrypt data from DATA_BLOB DataOut to DATA_BLOB DataVerify.
//--------------------------------------------------------------------
// Declare and initialize variables.
DATA_BLOB DataOut;
DATA_BLOB DataVerify;
LPWSTR pDescrOut = NULL;
//--------------------------------------------------------------------
// The buffer DataOut would be created using the CryptProtectData
// function. If may have been read in from a file.
//--------------------------------------------------------------------
// Begin unprotect phase.
if (CryptUnprotectData(
&DataOut,
&pDescrOut,
NULL, // Optional entropy
NULL, // Reserved
NULL, // Here, the optional
// prompt structure is not
// used.
0,
&DataVerify))
{
printf("The decrypted data is: %s\n", DataVerify.pbData);
printf("The description of the data was: %s\n",pDescrOut);
}
else
{
printf("Decryption error!");
}