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 .

PIPX INSTALL

pipx install git+https://github.com/Baba01hacker666/HBC-Tool.git

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.17.tar.gz (387.9 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.17-cp313-cp313-win_amd64.whl (442.1 kB view details)

Uploaded CPython 3.13Windows x86-64

hbctool_cli-0.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

hbctool_cli-0.17-cp313-cp313-macosx_11_0_arm64.whl (439.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hbctool_cli-0.17-cp313-cp313-macosx_10_13_x86_64.whl (438.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

hbctool_cli-0.17-cp312-cp312-win_amd64.whl (442.1 kB view details)

Uploaded CPython 3.12Windows x86-64

hbctool_cli-0.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hbctool_cli-0.17-cp312-cp312-macosx_11_0_arm64.whl (439.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hbctool_cli-0.17-cp312-cp312-macosx_10_13_x86_64.whl (438.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

hbctool_cli-0.17-cp311-cp311-win_amd64.whl (442.0 kB view details)

Uploaded CPython 3.11Windows x86-64

hbctool_cli-0.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (496.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hbctool_cli-0.17-cp311-cp311-macosx_11_0_arm64.whl (439.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hbctool_cli-0.17-cp311-cp311-macosx_10_9_x86_64.whl (438.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

hbctool_cli-0.17-cp310-cp310-win_amd64.whl (442.0 kB view details)

Uploaded CPython 3.10Windows x86-64

hbctool_cli-0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hbctool_cli-0.17-cp310-cp310-macosx_11_0_arm64.whl (439.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hbctool_cli-0.17-cp310-cp310-macosx_10_9_x86_64.whl (438.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

hbctool_cli-0.17-cp39-cp39-win_amd64.whl (442.0 kB view details)

Uploaded CPython 3.9Windows x86-64

hbctool_cli-0.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hbctool_cli-0.17-cp39-cp39-macosx_11_0_arm64.whl (439.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hbctool_cli-0.17-cp39-cp39-macosx_10_9_x86_64.whl (438.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

hbctool_cli-0.17-cp38-cp38-win_amd64.whl (441.9 kB view details)

Uploaded CPython 3.8Windows x86-64

hbctool_cli-0.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hbctool_cli-0.17-cp38-cp38-macosx_11_0_arm64.whl (439.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hbctool_cli-0.17-cp38-cp38-macosx_10_9_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: hbctool_cli-0.17.tar.gz
  • Upload date:
  • Size: 387.9 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.17.tar.gz
Algorithm Hash digest
SHA256 ed8ba8f5c67ce9d9fde1a6bac20ef6492374562ea4cf59d038d5fd21861a55f5
MD5 f835d28dfa20b5ae282dc185836a818f
BLAKE2b-256 f14249943754a8942c3b32d210a86aecd78d4207ae320a5bcc1589b2a4cdbc76

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17.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.17-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.17-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 442.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.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2786b080e7771f63267808259d14d71cf8f1ac5d3f581d3aa219b585bddc8ca4
MD5 2d4ddff7fc5ce17930b3554251f88fbc
BLAKE2b-256 f4fdd9c1171db3d7f0cad72659244e400ea063a42c43ccb678efbc54610c5866

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f94d53d1208ad5739c8ed6602217e2678c619cfaccb856a95bf77e04094b5f4
MD5 b28491285ca228332e8db383905e911e
BLAKE2b-256 491e39f511df9f60691e4b2c807f58a5967342070898ea72a69d216dce735485

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bb68b056a5d805f7db1346ce7c81863fa95de92d94ec8fdd17fdfa77fd8c307
MD5 f317cf3c1313e991674069718e929b66
BLAKE2b-256 14832ad1ad7c1e1c693adf322f580e36d7b13ffc267467a8a3d207b4b2b8ccf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6da7aca52d4db1721dce6282ed0343d307ecdd4f309740c104b64941d97b507c
MD5 621e3823f67a75b3084e8ad9f386e644
BLAKE2b-256 e4a64b331e3a4033ac13df0ff82c0e60e3bd818ea78a980d58eb5d44ae8584c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.17-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 442.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.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4fb39a5cd17cb9d897b891a54b9bcd4fe86a80b5ed189f8ee500cf459e707498
MD5 ee78dd8a5bd4ab81c1c5582ba4db64de
BLAKE2b-256 244a0c5a0eaa63fd4992bf0d8719349d7a751944e6a34302355ffd4ce6597b82

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9162a2ef98a951e0172914304c6ba2c8f9869f84939f18d2c14991d3ded02196
MD5 9c4241acf63710297ef55d4c251b8dfe
BLAKE2b-256 7d039f8f928d8f25d608ebd87279372fdb5f6b9bddec13f0152b30ebcfa89d59

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f91d6a4ef160e3ae09625fe3aed8e21c7789f86ff14ba6f5c97b0deb84d846b
MD5 342cd3af08ecbfe6bc8dabcd05875f99
BLAKE2b-256 fa55ef3d3b6a22e9a4d699a72e1b68ab1900eb65573254a0adf41dcf7417eb2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2e3cf71278df420b2b7f3234d43bc119d3dac46f9e66f9784485780a063107e7
MD5 46263d90bf9ff2648168e664f3dc8db0
BLAKE2b-256 ef7a1a5248aa81e34666996784ee6f89f3ec5abd2abb61e39ab5f3cbabb32c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.17-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 442.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.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 70bdeaa986a8f56753d55750717c0c8e527db108171afc8ca72905ff292748d9
MD5 f7f69512d06eb3ce71b62843eefb7509
BLAKE2b-256 cb4369cc79950760e7791b5b5758752ef320725e91531b2dabf334cec3ed4ed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b01d6144d305d08a2c4ad23c97460bae7fa88491b000ffed028025ed5425c916
MD5 10d1b100bfdfdbbb28e5e1b3f8c662cc
BLAKE2b-256 4619151f37f1845db8953764eb4c2f65abde7f8c03bf648a8c855a0588ac37e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0c692e63ab84d3b5cba8094e1d616279965738610d19bf9e1e18e515774f812
MD5 54a4a5e719d37231406a25531610a507
BLAKE2b-256 e4129fa2525dcdbb00e3a613ba604ed35a454dd183cf631262c4df6d9fb2933f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55eb239588dd39b7ba7656f883cc9d9eca66f4a3660bfbd3c03873a37d3ed50b
MD5 917d044d8226445abb02c462c005764c
BLAKE2b-256 6d6b5a05611bc80272cb2530ea3987743d8c410f711ee46d6f2276a9f7e5ec3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.17-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 442.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.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c7a38e588f022ff31b35768f416fb969331e8b9bee16f5b2b9f85fd58fa13d1
MD5 6178c339df996b772ebf8063fefb78f5
BLAKE2b-256 a84df40be787cbab86cbcc57166eafba849fe95b5349ec4e9dd71d919504f7d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ea3a3820ee54a547deb9e0d75e12faf8da3d6177689da72a4f199c44cbe8c52
MD5 d3c4229e8a7bbffd18b91ea45a6df437
BLAKE2b-256 92718f1ae7795e110662b550e9d23a656be67ea5c177c32f920304c609e4b4b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2b6f29bd5a33cdd73c6b6be5d594f5a41ed3efe4110aacc28fb42576ef2d058
MD5 09c9e91f1d8cc24ce5d4b898a7bb387a
BLAKE2b-256 d409ab24e290cdbb77fc68c24e6e43e29cda4da748a2768b32257ee82fa7f022

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a335d7bab3e78bdcbc1ec3cd4f979bf5592b39305d96c2eff74911672c53497
MD5 2c61e4185314df3ff6bfd0d381a1a378
BLAKE2b-256 8a826fc2a5d37a2b14b773bf7d80502653bfb3c4dcedd3aec083ca11f9b47c19

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.17-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 442.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.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 720a3c42a889fa5e2db53707914dab9caedb1aa400620c9c88de502e81153c73
MD5 4820ee83b6a906e617f3ef2ef889ae68
BLAKE2b-256 08f474c696a8dfe766e38ff57f778f78842dcd4dbfe22b92f91a87c0191efde8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 152352e9488ab026a96f35d09f5220128491f7dc972c33a5738f12a87d0dd788
MD5 36af80265b8c9929b871739c1c3d74b5
BLAKE2b-256 e01111206adda7539f3b66e97821bb8dd8be3b59885196e18a0e616cc0277f48

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5acbbdcfec271ce98829828f45c3f1e4b60e220cd22a612b6f68665cacba0542
MD5 122451dbb9f4b66c1baf843650c50543
BLAKE2b-256 2d9a5637b048e4da41afae34e00c2d35f8a59fc26b319cfc36bccbf24aa1bd2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a94b89a1bdac7da346e07773583023d113df90be4d9b6f8c6a2112272e51f783
MD5 96530af0994374153cdf27ad8f3b9063
BLAKE2b-256 3f6741f871a3548e2a2493d518c6a357fbb942a4b2e03a84cf1fff62a17eae5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: hbctool_cli-0.17-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 441.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.17-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d8ab5133b53d7c677e786e77bf93a76801aacbaed8552303255001da5d151994
MD5 2bd3bb6c276506f05b5b0ddf9899e03b
BLAKE2b-256 7db7f5717dce5eb4580918542d584c874ef729fcb97689606612888b919bd4e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3bb4d12073bf7a15a42e5ffefa53ac0167952000f2c3f62f725000c1711eefb
MD5 010b2d15a9fc46016623c03c3b66d304
BLAKE2b-256 ad4f1374f1c2dea91890df3e9bab30c69e947366421f3c6ba2fa4b812413a157

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42848ec0814f7cec3f7157b7d6784cda77ac732912c05a41aa4bf667fc786c8d
MD5 0e9baee49dfd204df285b2bc3421826c
BLAKE2b-256 c2df47946164a6b2fe0b6e163e5c0c0041101e05469460102e381bac514b03f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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.17-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hbctool_cli-0.17-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e8b46a5afb54df6866a2dfe4e0dfd640ccc6e2f1548788a181e412d240824aca
MD5 0a05b2d8727f37e558e5853004d8cba4
BLAKE2b-256 0a551c8f0663f77cefbca273787834d734abbc5648c5e193953019664c72391d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hbctool_cli-0.17-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