Skip to main content

A set of functions useful in reverse engineering.

Project description

Info

ReverseBox is a Python library with a set of functions useful in reverse engineering.

Examples

Here is example usage:

// Checksum calculation

from reversebox.checksum import checksum_crc16
from reversebox.common import common


test_data = b'123456789'
checksum_handler = checksum_crc16.CRC16Handler()
crc16 = checksum_handler.calculate_crc16(test_data)
print("CRC16_INT: ", crc16)
print("CRC16_STR: ", common.convert_int_to_hex_string(crc16))

// Output

CRC16_INT:  47933
CRC16_STR:  0xBB3D

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ReverseBox-0.0.12.tar.gz (15.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page