Get a hash of the data at the time of the snapshot (read-only)
(self)
| 211 | |
| 212 | @property |
| 213 | def file_contents_hash(self) -> databuffer.DataBuffer: |
| 214 | """Get a hash of the data at the time of the snapshot (read-only)""" |
| 215 | assert self.has_contents |
| 216 | handle = core.BNGetSnapshotFileContentsHash(self.handle) |
| 217 | assert handle is not None |
| 218 | return databuffer.DataBuffer(handle=handle) |
| 219 | |
| 220 | @property |
| 221 | def undo_entries(self): |
nothing calls this directly
no test coverage detected