ExSecurePoolValidate - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

LOGICAL ExSecurePoolValidate(
  [in] HANDLE    SecurePoolHandle,
  [in] ULONG     Tag,
  [in] PVOID     Allocation,
  [in] ULONG_PTR Cookie
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-exsecurepoolvalidate)

Description

The ExSecurePoolValidate function validates that the secure pool provided is indeed the one previously created. It matches the secure header content with the values provided and checks if it owns the heap.

Parameters

SecurePoolHandle [in]

Supplies the handle for the heap.

Tag [in]

Supplies the pool tag for this allocation.

Allocation [in]

Supplies a pointer to the allocation it wants to validate.

Supplies a cookie value used for identifying this allocation.

Return value

A LOGICAL value indicating if validation succeeded.

Remarks

See also