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

Method get_hash_sha512

pythonmemorymodule/pefile.py:1312–1316  ·  view source on GitHub ↗

Get the SHA-512 hex-digest of the section's data.

(self)

Source from the content-addressed store, hash-verified

1310 return sha256(self.get_data()).hexdigest()
1311
1312 def get_hash_sha512(self):
1313 """Get the SHA-512 hex-digest of the section's data."""
1314
1315 if sha512 is not None:
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."""

Callers 2

dump_infoMethod · 0.80
dump_dictMethod · 0.80

Calls 1

get_dataMethod · 0.95

Tested by

no test coverage detected