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

Method zlib_compress

python/databuffer.py:158–162  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

156 return DataBuffer(handle=core.BNDecodeBase64(str(self)))
157
158 def zlib_compress(self) -> Optional['DataBuffer']:
159 buf = core.BNZlibCompress(self.handle)
160 if buf is None:
161 return None
162 return DataBuffer(handle=buf)
163
164 def zlib_decompress(self) -> Optional['DataBuffer']:
165 buf = core.BNZlibDecompress(self.handle)

Callers

nothing calls this directly

Calls 1

DataBufferClass · 0.70

Tested by

no test coverage detected