CryptUnprotectMemory function crypt32

int CryptUnprotectMemory(
  1. Pointer<NativeType> pDataIn,
  2. int cbDataIn,
  3. int dwFlags
)

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);