CryptUnprotectMemory function crypt32
The CryptUnprotectMemory function decrypts memory that was encrypted using the CryptProtectMemory function.
BOOL CryptUnprotectMemory(
[in, out] LPVOID pDataIn,
[in] DWORD cbDataIn,
[in] DWORD dwFlags
);
Implementation
int CryptUnprotectMemory(Pointer pDataIn, int cbDataIn, int dwFlags) =>
_CryptUnprotectMemory(pDataIn, cbDataIn, dwFlags);