MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / serialized_data

Method serialized_data

python/database.py:81–85  ·  view source on GitHub ↗

Get the stored representation of the kvs (read-only)

(self)

Source from the content-addressed store, hash-verified

79
80 @property
81 def serialized_data(self) -> databuffer.DataBuffer:
82 """Get the stored representation of the kvs (read-only)"""
83 handle = core.BNGetKeyValueStoreSerializedData(self.handle)
84 assert handle is not None
85 return databuffer.DataBuffer(handle=handle)
86
87 def begin_namespace(self, name: str):
88 """Begin storing new keys into a namespace"""

Callers

nothing calls this directly

Calls 1

DataBufferMethod · 0.80

Tested by

no test coverage detected