Skip to main content

A command-line interface for disassembling and assembling the Hermes Bytecode.

Project description

hbctool logo

Python 3.x PyPI version MIT License

A Hermes bytecode disassembler and assembler for React Native bundles.
Originally created by baba01hacker and continued by Doraemon cyber team.

Why hbctool

React Native apps can ship JavaScript through the Hermes engine, which compiles application code into Hermes bytecode. That makes reverse engineering, inspection, and patching harder than working with plain JavaScript bundles.

hbctool helps with that workflow by letting you:

  • disassemble a Hermes bundle into a readable HASM representation
  • modify metadata, strings, and instructions
  • rebuild a valid Hermes bytecode bundle from the edited output
  • use either the pure-Python path or the optional native C++ acceleration path

Features

  • Disassemble Hermes bytecode bundles into a directory with metadata, strings, and instructions.
  • Assemble edited HASM output back into a Hermes bundle.
  • Optional C++ acceleration for faster low-level operations.
  • Test coverage for pure-Python and native execution paths.
  • Support for Hermes bytecode versions 59, 62, 74, 76, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, and 96.

Installation

Quick install

python3 -m pip install hbctool-cli

Local development install

python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install -e .

Build the optional native extension

python3 setup.py build_ext --inplace

Enable the accelerated path at runtime:

export HBCTOOL_FASTUTIL=1

Verify that the native modules are available:

python3 -c "import hbctool._fastutil, hbctool._bitcodec; print('native extensions ok')"

If the extensions are not present, hbctool still works in pure-Python mode.

Usage

Show help:

hbctool --help

CLI syntax:

Usage:
    hbctool disasm <HBC_FILE> [<HASM_PATH>]
    hbctool asm [<HASM_PATH>] [<HBC_FILE>]
    hbctool --help
    hbctool --version

Examples:

hbctool disasm index.android.bundle test_hasm
hbctool asm test_hasm index.android.bundle
hbctool disasm index.android.bundle
hbctool asm

By default:

  • disasm writes to hasm/
  • asm reads from hasm/ and writes index.android.bundle

For Android targets, the Hermes bundle is commonly found under the app assets/ directory as index.android.bundle.

Output Layout

A disassembly writes three files:

  • metadata.json
  • string.json
  • instruction.hasm

This makes it practical to inspect strings, metadata, and instructions separately before rebuilding.

Benchmarking

You can benchmark the round-trip path and compare pure Python against the native path with the helper script:

python3 scripts/benchmark_roundtrip.py Testfiles/index.android.bundle --iterations 2 --max-size-ratio 1.10 --min-core-speedup 2.0 --json output/bench/report.json

The report includes:

  • timing for both execution modes
  • computed speedup
  • output-to-input size ratio checks
  • a low-level memcpy speedup check

The script exits non-zero when configured safety or performance thresholds are not met, which makes it suitable for CI gating.

Development

Run the test suite:

python3 -m pytest -q

Run the test suite with the native path enabled:

HBCTOOL_FASTUTIL=1 python3 -m pytest -q

Build distributable artifacts:

python3 -m pip install --upgrade build
python3 -m build

If the built wheel includes the compiled extension, it will be platform-tagged rather than py3-none-any.

Credits

  • Original work: baba01hacker
  • Ongoing maintenance and remastering: Doraemon cyber team

License

This project is released under the MIT License. See LICENSE.

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

hbctool_cli-0.1.6.tar.gz (383.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

hbctool_cli-0.1.6-cp313-cp313-win_amd64.whl (438.1 kB view details)

Uploaded CPython 3.13Windows x86-64

hbctool_cli-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

hbctool_cli-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (435.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hbctool_cli-0.1.6-cp313-cp313-macosx_10_13_x86_64.whl (434.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

hbctool_cli-0.1.6-cp312-cp312-win_amd64.whl (438.1 kB view details)

Uploaded CPython 3.12Windows x86-64

hbctool_cli-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hbctool_cli-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (435.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hbctool_cli-0.1.6-cp312-cp312-macosx_10_13_x86_64.whl (434.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

hbctool_cli-0.1.6-cp311-cp311-win_amd64.whl (438.0 kB view details)

Uploaded CPython 3.11Windows x86-64

hbctool_cli-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hbctool_cli-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (435.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hbctool_cli-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl (434.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

hbctool_cli-0.1.6-cp310-cp310-win_amd64.whl (438.0 kB view details)

Uploaded CPython 3.10Windows x86-64

hbctool_cli-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (489.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hbctool_cli-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (435.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hbctool_cli-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl (434.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

hbctool_cli-0.1.6-cp39-cp39-win_amd64.whl (438.0 kB view details)

Uploaded CPython 3.9Windows x86-64

hbctool_cli-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hbctool_cli-0.1.6-cp39-cp39-macosx_11_0_arm64.whl (435.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hbctool_cli-0.1.6-cp39-cp39-macosx_10_9_x86_64.whl (434.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

hbctool_cli-0.1.6-cp38-cp38-win_amd64.whl (437.9 kB view details)

Uploaded CPython 3.8Windows x86-64

hbctool_cli-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hbctool_cli-0.1.6-cp38-cp38-macosx_11_0_arm64.whl (435.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hbctool_cli-0.1.6-cp38-cp38-macosx_10_9_x86_64.whl (434.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file hbctool_cli-0.1.6.tar.gz.

File metadata

  • Download URL: hbctool_cli-0.1.6.tar.gz
  • Upload date:
  • Size: 383.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hbctool_cli-0.1.6.tar.gz
Algorithm Hash digest
SHA256 3cc436255505b934b58937a0efd6a57151e93d021c4e223c70e3b15c876fdf36
MD5 815aa73b2881476296ae5bd3f5db6688
BLAKE2b-256 66d00c41b578469fe4a7b4efabbf77396f313d344ea19f59e22f7db446044648

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6.tar.gz:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.1.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 438.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hbctool_cli-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 685cece7c0999448f422a712a39d8bfc30acb8b15778985aa128d7f70410c977
MD5 086d1c9319254678484f047a08ed487b
BLAKE2b-256 2b5adadbd8c8c06a919cb4db0306cf54340bbaa515f02ad7947ad3ba6cdf5a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp313-cp313-win_amd64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db7aeaed49cab44253b1ce128704b5f3901badbfce78f248e8aa0d317193cc9a
MD5 92cb8efb210501ee0fa84def8915a6f3
BLAKE2b-256 b0b1c2a0d89a8f1778931c815a47fa3456726a04761bde5c5f0881f724bb3c34

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8795dcee4df6dad8e8fe21fe492b9c27a83c59b3089c04a7500c57c61f776f51
MD5 9ba8dfe3540874e464835f9fe538455b
BLAKE2b-256 8926279db321d9b4cadaba75623cc7c5b76a1903a17f9d2f9252b02892dadfd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fe92b491b80758fc7a8e22048a8bbaf18d15ec9d3c4e230dcdb5b564f36bce1c
MD5 596165eda187bc9b900be130b5177e80
BLAKE2b-256 f4bcac6e023b004208e4adc073f8a6a250d47d3e2389e63ac83f16b0daeea851

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.1.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 438.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hbctool_cli-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 545ebeed080844e23a9adc03be713529a63fc9be4a4c77f62e123d170bbf4ff8
MD5 c6fb3e4c29cdd71e1e75239a709e1ee3
BLAKE2b-256 1251ee6dac0c565878902ffd45897b0f5090a42b358f6069254b129a9e9847c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp312-cp312-win_amd64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7cc9ccfd100d0cfc9b416a5f4480b435961095da4bee1c21c8e28c4f8872adb
MD5 4234fb3cc58f1bcf4a0af84ade30f8b1
BLAKE2b-256 e950ec8c932c489475abba7dd0bd51c34d0ca013c78c4e6053a02adea17e1028

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3af1bc89726972ae76400a1883e3b90b7f0fdd08a92a44c4d819d19c3afd7dbc
MD5 1a0c2d96d39ebee1bdef6cad190e93a0
BLAKE2b-256 35182b4d7347d5520c3b81b439286e39a7dc8e94615ba04ff465008cebd2aafd

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a759988eb73e6d595fda7bab20a5e85263fd8045860372f739a034655abff7f
MD5 fbf45865c865788eda171bdb8b079d6a
BLAKE2b-256 5b063c2bfaa1a3b045430019449618449a05ea992169315c71cb724c647d30cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.1.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 438.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hbctool_cli-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8430e75b1a2fa47fb58149b2910ef724776c05113acd8b6eb0f8c43835824137
MD5 13be0ce04edece7dcf9540801361292f
BLAKE2b-256 dedcdf53aaf59d11f69027126a00c67a8e3cfd8db85cf611910180423790e67d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp311-cp311-win_amd64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03ca88ee6d3515ede69beae3049bdb6c17e14362626978f1f2a235ec182ef0f6
MD5 f20917b13a7a3f11cd11338ace176387
BLAKE2b-256 2f5438f280dc8e22a796ffed0783c3c0f774d04456e0da11079b2069832968f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ee64cafb9672bfe92daf39d1b4f53e00bc8d4ca030f2b6881d54c0d371f93e8
MD5 5cea797b5a83bb6c0b7527cb24d847e7
BLAKE2b-256 9ec9f601b1a1e766cdb3ccd154a71d9bfe05ead16478de6de5ebd33bd915e671

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54080da202d04a94ebf188fd13c3e91bc25071f84a8ab8dd318c21f106bbe81d
MD5 d6d167a3eac4c496429add87a6752f89
BLAKE2b-256 e6470c4e83ad44bab7b64b305ac8304e8b8c20ec3cd3f7dc35d32bd293cb0ac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.1.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 438.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hbctool_cli-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bcea0d893efa7272dc7f4cc95792397c2bfa47c8377720a18de30e1793bfc131
MD5 6589479fe3affbdae37de955dedebb4e
BLAKE2b-256 0bb28f2e8b0588e0230da32a9c4fa23ca3d5923ba064eade4b44b35b9295cd65

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp310-cp310-win_amd64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a763361cb6e55aa3c5a701954b346c6c9df9327cf84783d6a38e04629c7dd0b4
MD5 bc92df14196ff63e7c2d62e92d01c593
BLAKE2b-256 7352514a3f70ff48ebaf39f151ebf0d436a5fb5e77d99132cb5ed3296952a6e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b5f617b264f702a39916a64c443b115e3a2da39acb1625013fd8a2abb81cf46
MD5 09aed9ea2dd31283d2fd2f6cb1f3da47
BLAKE2b-256 ddfc99fe1d4304622a0365c93ea3f120e7f062cb9d02fc60c5aa90c20120e120

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4edb54e053a6e3f9d29ddd5d9ea909cbb52af210a1b70771644188385e7daa4c
MD5 917c568d77822e5240124be210425cde
BLAKE2b-256 61adc8697719b5731588801d9e0bc4214fc2ab0e170208b359198d4ca372f107

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.1.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 438.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hbctool_cli-0.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9373f2b1d5a7e8cd99a4bec370fb5efa2d060b8aaa8bb2683314ed61dbaa4d48
MD5 daaef8351ad0d57f4db4afd356f7c01f
BLAKE2b-256 b6ff96e4f567d2ba9f3f01667b7b7eca210ae855044672abc010d65a9eca7940

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp39-cp39-win_amd64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 faf1e1637f73dcf8c939a0fc719e0ae65834846eaec8c58c48288c4fb600f6ad
MD5 ba07d0c5352f72e4d78d9801c143556f
BLAKE2b-256 de72f008731979134a1dbd7312de501086843758db49a486b692a2222b6e71bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa4d99eed394b6d1639b5f58d1c1c88a7176cb26f0a205e46989aa4465eac7ab
MD5 cb54e2ce9259c0b815718dc4076f39e6
BLAKE2b-256 5f1f938a44fb46c4a3c5785cd1be21376a9d7517be1d4049083fcc7bf8313dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd731e7b149baefb2077602e84f0b8fabb97fc169fd3bee1bf0c9e7808e8c6c6
MD5 126f65de2e03ecb9000c54a48bd290bc
BLAKE2b-256 63d343a4b5c6dffdb5d182ee6a8828b815e0a41c6d84caee4666e60e441546ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.1.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 437.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hbctool_cli-0.1.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 485fe5bbbd7ad62611f1633c7c70af2d52bd31074b04bafdde3156b0b396824c
MD5 dbd1e2fa06a3e203a2fd519ced7262a8
BLAKE2b-256 3782750c25c36247423beabf76268ff266fd7be71942892d02fa76e28fb37e6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp38-cp38-win_amd64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 379df9d0e3a0bb4e699cc7f844f245911c9b9e98a9a2f107313a279560adf902
MD5 9d76daaae05130b1b3ce5134a9568d60
BLAKE2b-256 08ff223cd17eb2f13d2d80803568633c39bfb659bd85da312898d0bec172eb13

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6809cc2f2c679f898f92d91589a670d4dfb5a5bb1fcc5a8902bced77f69ad22d
MD5 f2fffd0619e08b6f36ce921f8744b414
BLAKE2b-256 20ebfa4bbe5f5ccbfa14c8ab6e4bde0c6055af481e19d03eaf779ea17d758ea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hbctool_cli-0.1.6-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.1.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5223c864b1903c2d5a920e64b4e933ba896faa9949ae7a82a44ae99014c5880
MD5 6be3bc0ebe4281aee798aac92e98b67a
BLAKE2b-256 5d9e2abc33765195407fe5251674bbf365e8c8e737cfb4b92dcb80c43c34aa1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.1.6-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on Baba01hacker666/HBC-Tool

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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