MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / get_hash_md5

Method get_hash_md5

pythonmemorymodule/pefile.py:1318–1322  ·  view source on GitHub ↗

Get the MD5 hex-digest of the section's data.

(self)

Source from the content-addressed store, hash-verified

1316 return sha512(self.get_data()).hexdigest()
1317
1318 def get_hash_md5(self):
1319 """Get the MD5 hex-digest of the section's data."""
1320
1321 if md5 is not None:
1322 return md5(self.get_data()).hexdigest()
1323
1324 def entropy_H(self, data):
1325 """Calculate the entropy of a chunk of data."""

Callers 2

dump_infoMethod · 0.80
dump_dictMethod · 0.80

Calls 1

get_dataMethod · 0.95

Tested by

no test coverage detected