x64dbg/docs/developers/plugins/API/hash.rst
2025-07-04 01:32:42 +02:00

22 lines
440 B
ReStructuredText

============
_plugin_hash
============
This function allows you to hash some data. It is used by x64dbg in various places.
::
duint _plugin_hash(
const void* data, //data to hash
duint size //size (in bytes) of the data to hash
);
----------
Parameters
----------
:data: Data to hash
:size: Size (in bytes) of the data to hash.
-------------
Return Values
-------------
Returns the hash.