Explorar o código

Improve efficiency of file cache lookup

nosoop hai 10 meses
pai
achega
a7784d549c
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/smgdc/validate.py

+ 1 - 1
src/smgdc/validate.py

@@ -57,7 +57,7 @@ class BaseBinary:
         self.path = path
         self._file = open(self.path, "rb")
 
-        file_hash = hashlib.sha256(self.path.read_bytes())
+        file_hash = hashlib.file_digest(self._file, "sha256")
         cached_proj = (cache_path or pathlib.Path()) / f"{file_hash.hexdigest()}.angr.pkl"
         if not cached_proj.exists():
             self.angr = angr.Project(self.path, load_options={"auto_load_libs": False})