Skip to main content

Sigmaker is an IDA Pro 9.0+ cross-platform signature maker plugin that works on MacOS/Linux/Windows. It creates unique binary pattern signatures to identify specific functions or addresses within binaries, even after updates. It helps reverse engineers preserve their analysis work by generating resilient signatures that can quickly relocate important code locations in new binary versions.

Project description

Signature Maker Plugin for IDA Pro 9.0+

Magnifying glass with the word 'sigmaker' and a cross-hair over the 'A' in sigmaker ida-sigmaker tests

An IDA Pro 9.0+ zero-dependency cross-platform signature maker plugin with optional SIMD (e.g. AVX2/NEON/SSE2) speedups that works on MacOS/Linux/Windows. The primary goal of this plugin is to work with future versions of IDA without needing to compile against the IDA SDK as well as to allow for easier community contributions.

Background reading on mahmoudimus.com:

Table of contents

Installation

sigmaker's main value proposition is its cross-platform (Windows, macOS, Linux) Python 3 support. It uses zero third party dependencies, making the code both portable and easy to install.

Quick Install

  • Copy src/sigmaker/__init__.py into the /plugins/ folder to the plugin directory!
  • Rename it to sigmaker.py
  • OPTIONALLY, if you would like SIMD speedups, just pip install sigmaker
  • Restart IDA Pro.

From Releases

  • Download the latest conveniently renamed sigmaker.py release from the Releases page
  • Copy it to your IDA Pro plugins directory
  • OPTIONALLY, if you would like SIMD speedups, just pip install sigmaker
  • Restart IDA Pro

That's it!

Install with hcli

hcli is Hex-Rays' command-line tool, and it can install sigmaker from the IDA Plugin Repository. Install hcli once:

curl -LsSf https://hcli.docs.hex-rays.com/install | sh        # macOS/Linux
iwr -useb https://hcli.docs.hex-rays.com/install.ps1 | iex    # Windows (PowerShell)

Then authenticate (see the hcli docs) and install the plugin:

hcli plugin search sigmaker
hcli plugin install SigMaker

hcli downloads the plugin and places it in $IDAUSR/plugins (~/.idapro/plugins on macOS/Linux), where IDA loads it on the next launch. Requires IDA 9.0+. For SIMD speedups, also run pip install sigmaker as above.

Need to find your plugin directory?

From IDA's Python console run the following command to find its plugin directory:

import idaapi, os; print(os.path.join(idaapi.get_user_idadir(), "plugins"))

Where and what is my default user directory?

The user directory is a location where IDA stores some of the global settings and which can be used for some additional customization. Default location:

  • On Windows: %APPDATA%/Hex-Rays/IDA Pro
  • On Linux and Mac: $HOME/.idapro

SIMD Speedups

If you just followed the installation above and ran pip install sigmaker, then based on your system and architecture (i.e. Windows (x64), Linux (x64), Mac (x64), Mac (ARM/Silicon)), the plugin will install the appropriate wheel and will automatically use them if they're available. You do not have to do anything else. The plugin is designed to display the status of whether or not SIMD speedups are installed. They are shown in the top right menu bar of the plugin:

SIMD Enabled

No SIMD Speedups

Requirements

  • IDA Pro 9.0+
  • IDA Python
  • Python 3.10+

What is a "sigmaker"?

Sigmaker stands for "signature maker." It enables users to create unique binary pattern signatures that can identify specific addresses or routines within a binary, even after the binary has been updated.

In malware analysis or binary reverse engineering, a common challenge is pinpointing an important address, such as a function or global variable. However, when the binary is updated, all the effort spent identifying these locations can be lost if their addresses change.

To preserve this work, reverse engineers take advantage of the fact that most programs do not change drastically between updates. While some functions or data may be modified, much of the binary remains the same. Most often, previously identified addresses are simply relocated. This is where sigmaker comes in.

Sigmaker lets you create unique patterns to track important parts of a program, making your analysis more resilient to updates. By generating signatures for specific functions, data references, or other critical locations, you can quickly relocate these points in a new version of the binary, saving time and effort in future reverse engineering tasks.

Usage

In disassembly view, select a line you want to generate a signature for, and press CTRL+ALT+S:

OR Right-Click and select SigMaker:

The generated signature will be printed to the output console, as well as copied to the clipboard:


Signature type Example preview
IDA Signature E8 ? ? ? ? 45 33 F6 66 44 89 34 33
x64Dbg Signature E8 ?? ?? ?? ?? 45 33 F6 66 44 89 34 33
C Byte Array Signature + String mask \xE8\x00\x00\x00\x00\x45\x33\xF6\x66\x44\x89\x34\x33 x????xxxxxxxx
C Raw Bytes Signature + Bitmask 0xE8, 0x00, 0x00, 0x00, 0x00, 0x45, 0x33, 0xF6, 0x66, 0x44, 0x89, 0x34, 0x33 0b1111111100001

Finding XREFs

Generating code Signatures by data or code xrefs and finding the shortest ones is also supported:


Signature searching

Searching for Signatures works for supported formats:

It also supports wildcard nibble search support:

Just enter any string containing your Signature, it will automatically try to figure out what kind of Signature format is being used:

Currently, all output formats you can generate are supported.

Match(es) of your signature will be printed to console alongside the containing function name:

If the matched address is not a function name or has no function name, it falls back to just printing the address:

Signature Configuration

sigmaker also supports configurable wildcardable operands for unique signature creation:

There are also various options that be configured via the Other options button:

Performance

SigMaker's "find the shortest unique signature for the current function" search has been heavily optimized. On a real 16 MB module, a single worst-case function search once took 462 seconds (7.7 minutes). A stack of four optimizations brought the heaviest searches down to the tens-of-seconds range and typical ones to near-instant. One user reported the progress wait-box now "barely show[s] up for a 26 byte signature."

The full derivation, including the match-set math, the counting-sort index, the selectivity proof, and what is novel about the approach, is written up in ALGORITHM.md.

Benchmarks

Measured on the largest function (8486 bytes) of a 16 MB module via native idalib on Apple Silicon. The effects are cumulative across the four phases:

Optimization Effect PR
Phase 1: seed-then-refine candidate refinement ~13x faster function search #33
Phase 2: 2-byte bucket position index additional ~2.48x on large databases, widening as the database grows #35
Phase 3: dynamic seed selection (1- or 2-byte) per-anchor seed scans cut from 206 to 2 #36
Phase 4: Cython in-place refinement per-byte refinement ~14 s to ~0.28 s (~50x); function total ~24 s to ~15.6 s #36

Signature output is byte-identical before and after every optimization. The test suite cross-checks each fast path against a brute-force oracle and diffs the generated signatures across the entire test binary.

How it works

A short tour (see ALGORITHM.md for the math):

  • Seed, then refine. The set of database matches can only shrink as a signature grows, so instead of rescanning the whole database for every candidate length, SigMaker scans once to seed a candidate set and then filters that set in place as each byte is appended.
  • Index the database once. A counting-sort index over every adjacent byte pair lets the seed be drawn from the rarest exact run in the pattern, in time proportional to that run's frequency rather than to the database size. The same index serves both 1-byte and 2-byte runs for free, so the most selective anchor is always chosen.
  • Push the hot loops into C. With the optional pip install sigmaker SIMD wheel, the index build and the per-byte refinement run as nogil C over typed buffers with zero per-call allocation, and the raw byte scan uses AVX2/NEON/SSE2. Without the wheel, pure-Python fallbacks produce identical results.

Using SigMaker as a library

Beyond the IDA plugin, sigmaker is imported directly as a Python library by other tools (for example, batch signature-generation pipelines). The core types are usable from any IDAPython or idalib context:

import sigmaker

cfg = sigmaker.SigMakerConfig(
    output_format=sigmaker.SignatureType.IDA,
    wildcard_operands=True,
    continue_outside_of_function=False,
    wildcard_optimized=True,
    ask_longer_signature=False,
)
result = sigmaker.SignatureMaker().make_signature(ea, cfg)
print(f"{result.signature:ida}")   # IDA-style string
print(len(result.signature))       # byte length

# Cross-references:
xrefs = sigmaker.XrefFinder().find_xrefs(ea, cfg)
for gen in xrefs.signatures:
    print(str(gen.address), f"{gen.signature:ida}")

Stability contract

If you embed sigmaker, you can rely on the following. These are treated as a contract and are checked before any change to the public surface:

  1. Append-only config. SigMakerConfig fields are never reordered or removed. New behavior arrives as new fields with safe defaults, so existing constructions keep working.
  2. Stable public names. These names and their documented attributes are not renamed or removed: SignatureMaker, SigMakerConfig, SignatureType (IDA, x64Dbg, Mask, BitMask), XrefFinder, GeneratedSignature (signature, address, status, match_count), XrefGeneratedSignature (signatures), Match (__str__ returns the hex address), Signature (__len__, __format__), GenerationPolicy, GenerationStatus.
  3. Stable method signatures. SignatureMaker.make_signature(ea, cfg, end=None, *, progress_reporter=None, policy=GenerationPolicy.strict()), XrefFinder.find_xrefs(ea, cfg), XrefFinder.count_code_xrefs_to(ea), and XrefFinder.iter_code_xrefs_to(ea).
  4. Stable format specs. f"{sig:ida}", f"{sig:x64dbg}", f"{sig:mask}", and f"{sig:bitmask}" keep producing their current output exactly.
  5. Byte-identical defaults. Production defaults are unchanged across optimizations: a script that does not opt into a new flag gets byte-identical signatures to previous versions.

Used by

Projects that build on or embed the sigmaker library:

  • mrexodia/ida-pro-mcp, an AI reverse-engineering MCP server (8.9k+ stars), vendors a stripped, engine-only copy of sigmaker and exposes signature tools through SigMakerConfig, SignatureType, SignatureMaker().make_signature, and XrefFinder().find_xrefs.
  • koyzdev/sigdrift is a batch signature-generation script that imports the library and calls SignatureMaker().make_signature(ea, SigMakerConfig(...)) and XrefFinder(), formatting results via f"{sig:ida}" and f"{sig:mask}".

Building something on top of sigmaker? Open a PR or an issue and I will add it here.

Acknowledgements

Thank you to @A200K's IDA-Pro-SigMaker plugin, which served as inspiration and the basis for the initial port of this plugin. I would also like to acknowledge @kweatherman's sigmakerex as independent prior work within the SigMaker ecosystem. While the initial port did not draw from sigmakerex, members of the community later requested compatibility and feature parity with parts of its functionality (for example, see issue #17). As documented in sigmakerex's README credits, there is a long history of SigMaker authors and contributors, and I would like to thank and acknowledge them as well:

thanks to the previous creators of the original SigMaker tool back from the gamedeception.net days up to the current C/C++ and Python iteration authors: P4TR!CK, bobbysing, xero|hawk, ajkhoury, and zoomgod et al.

Thanks to Wojciech Mula for his SIMD programming resources.

Development & Releases

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Test thoroughly
  5. Submit a pull request

The version lives in one place, __version__ in src/sigmaker/__init__.py. To keep ida-plugin.json in step with it automatically, enable the repo's git hook once per clone:

git config core.hooksPath .githooks

The pre-commit hook (.githooks/pre-commit) runs tools/sync_plugin_version.py, which copies __version__ into ida-plugin.json and stages it, so the manifest the IDA Plugin Repository reads can never drift behind a version bump. CI runs the same check (TestPluginManifestVersion) as a backstop for commits that skip the hook.

Contact

ping me on x @mahmoudimus or you may contact me from any one of the addresses on mahmoudimus.com.

MIT License

Copyright (c) 2024 Mahmoud Abdelkader (@mahmoudimus)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

sigmaker-1.11.0.tar.gz (261.1 kB view details)

Uploaded Source

Built Distributions

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

sigmaker-1.11.0-cp313-cp313-win_amd64.whl (339.6 kB view details)

Uploaded CPython 3.13Windows x86-64

sigmaker-1.11.0-cp313-cp313-win32.whl (327.5 kB view details)

Uploaded CPython 3.13Windows x86

sigmaker-1.11.0-cp313-cp313-musllinux_1_2_x86_64.whl (858.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sigmaker-1.11.0-cp313-cp313-musllinux_1_2_aarch64.whl (836.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sigmaker-1.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (864.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sigmaker-1.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (851.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sigmaker-1.11.0-cp313-cp313-macosx_11_0_arm64.whl (352.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sigmaker-1.11.0-cp313-cp313-macosx_10_13_x86_64.whl (353.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

sigmaker-1.11.0-cp312-cp312-win_amd64.whl (339.8 kB view details)

Uploaded CPython 3.12Windows x86-64

sigmaker-1.11.0-cp312-cp312-win32.whl (327.5 kB view details)

Uploaded CPython 3.12Windows x86

sigmaker-1.11.0-cp312-cp312-musllinux_1_2_x86_64.whl (864.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sigmaker-1.11.0-cp312-cp312-musllinux_1_2_aarch64.whl (842.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sigmaker-1.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (868.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sigmaker-1.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (854.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sigmaker-1.11.0-cp312-cp312-macosx_11_0_arm64.whl (353.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sigmaker-1.11.0-cp312-cp312-macosx_10_13_x86_64.whl (354.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

sigmaker-1.11.0-cp311-cp311-win_amd64.whl (338.4 kB view details)

Uploaded CPython 3.11Windows x86-64

sigmaker-1.11.0-cp311-cp311-win32.whl (326.8 kB view details)

Uploaded CPython 3.11Windows x86

sigmaker-1.11.0-cp311-cp311-musllinux_1_2_x86_64.whl (861.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sigmaker-1.11.0-cp311-cp311-musllinux_1_2_aarch64.whl (846.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sigmaker-1.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (860.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sigmaker-1.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (855.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sigmaker-1.11.0-cp311-cp311-macosx_11_0_arm64.whl (352.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sigmaker-1.11.0-cp311-cp311-macosx_10_9_x86_64.whl (352.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

sigmaker-1.11.0-cp310-cp310-win_amd64.whl (338.2 kB view details)

Uploaded CPython 3.10Windows x86-64

sigmaker-1.11.0-cp310-cp310-win32.whl (327.3 kB view details)

Uploaded CPython 3.10Windows x86

sigmaker-1.11.0-cp310-cp310-musllinux_1_2_x86_64.whl (832.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sigmaker-1.11.0-cp310-cp310-musllinux_1_2_aarch64.whl (817.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sigmaker-1.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (832.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sigmaker-1.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (827.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sigmaker-1.11.0-cp310-cp310-macosx_11_0_arm64.whl (352.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sigmaker-1.11.0-cp310-cp310-macosx_10_9_x86_64.whl (353.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file sigmaker-1.11.0.tar.gz.

File metadata

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

File hashes

Hashes for sigmaker-1.11.0.tar.gz
Algorithm Hash digest
SHA256 fffeae6a77379deb901820995b9fa90eba7db325899d77af37d70b09980eba66
MD5 52d882a01aaea55a114ee086630fbfcb
BLAKE2b-256 9b67c412209939c3b7b7389b0fdde129eb952d8b1196f6036e0b1adfc99487db

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0.tar.gz:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.11.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 339.6 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 sigmaker-1.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 338cbe89187457c5adb83c6478b06ad09cc1ffe538cc8fe93a79697dac6aa5c4
MD5 4c4ba609d883e48248166cc50d6aecb0
BLAKE2b-256 caa462a9edff3574e5423126ce2941856ba4cc7d3ee00f83eb61db4c6d94af9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp313-cp313-win_amd64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: sigmaker-1.11.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 327.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 483ffd3552845628c3dbdb34fb4625349d51fd2abcc303bffea3f3cd06cbdfe8
MD5 9ea1fd74f9d93850a0fbf38d4f9b0ce0
BLAKE2b-256 573dc7d95e434cdc40b2441856c37ba83cd8f60d700faf37b7870e0d0be566b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp313-cp313-win32.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fb38d87078f4fc2a4e0510b110b070819dbf5c97a38fe7591aa4a5fb4415f85
MD5 dd78fb432e1921af8a1c4178b99662db
BLAKE2b-256 4c1ce0294701c6c7c5d544707ff1928487da4f34788e29de4fa655c8f111117d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbf2dccdce8fa20acbf590bc00b48c9defd1bebffba391715f8aa2d979e2fadb
MD5 2d5ddb45d003e5f93248a2bf57a007c1
BLAKE2b-256 d550a63b882fbdf79c3f169dfa82d3a5057ff52c6ea995e676efde511d2cab6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3f5642a9c06fea36460e708bf41beda1fbde3307624d8b808e09f010515b1e8
MD5 1984f1f508428381f4bac5bda057497d
BLAKE2b-256 056da1db8c649444f461179ed7079c0500dab0eb4d825217674250f62edc14f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db1bcebd4af715cc94489cc8d5bfe9588dbbf111be6a62370fd32fa4485bf349
MD5 dd1fa6fc134c975318d2f69fea1c8496
BLAKE2b-256 dc3616c02bad3f85354981146d98be6786f823962f3c7e66470be7ed706aff2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c9b41db3dd1341335c1ab42d8ca1f97e6f1d8c4909e3c601fce0dc23d40f72e
MD5 37debefba5691b2970b949bdafc97c1e
BLAKE2b-256 c605f8266e3cd50afe626b32e2432be9efa4901ff1ca096cb715df6805528a9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4f50ab746029afb2c3e92951483b5d536f1c763b4d099aee93ebf16345322231
MD5 374108250f2cb481050ea68bac818f21
BLAKE2b-256 4afac5afbd50fe1d0634bce2db565f3bca5ed8324f5f803d55f3484a9b3ea444

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.11.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 339.8 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 sigmaker-1.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 54b202b36af45dd66717e9eaa4352d13e03de72e226979708bf6cd68bc45915b
MD5 7881a7f7a7bb01639688b5b54d5b3e71
BLAKE2b-256 228fa19c44434e174f6d3deced44bc4f4ea4d6e366cd826f43d9a5600a2a8640

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp312-cp312-win_amd64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: sigmaker-1.11.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 327.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2ee9f6c24d220f0df0fc6c8ae9b7ac3fdecdb880443d66877ffe4de2f8439c2d
MD5 c76aa0d145e1731c3ae792bcded377a1
BLAKE2b-256 be8e31ffba83439f2fc8642070bc2728eff1374c1d92808ff2b574ed76898540

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp312-cp312-win32.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 704013c63ecb7a14270c651c3287603d7c1126e6f6aad9f76b3aba904a54bcde
MD5 e770cc2b723330912731f0fa8aca5722
BLAKE2b-256 f2c8854cf9887f9ec139ca9ff9311d98f3c74a01570d0cd86685d16033e89a5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d34995126e7a1b0cf8a1cc35c2cfdc40191691e88f2845ba545d7a2d100bc09
MD5 1bd675210332bc1b6e7c2781f7b5a363
BLAKE2b-256 4fd9b277d58c0003be9d7b2ee381e31d023c011dc6198d7385c67d78bf5d52a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b788277169c1d60eb158e66f357b4526dd3c84ce3d11bfe6d49278a49e08148d
MD5 762e35322038c9be29c03f6edfabbd1a
BLAKE2b-256 c71a584f49c5d7b4d9cf89641c99cc3a080eba455c9f4314db372ccbfd48518b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb294023eeae4308d3d726067d3664d07358b81681c4ac437c1fc3769d1c9020
MD5 37fa40360877d30fd5a3bc53feb10745
BLAKE2b-256 207f74d3e09f3c356488628675ad5cecbf79edd4ee8ea407a9ca5a7d8ca1c030

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44ba907e50bf942f523e5d0a45b106d90c475d5790085de29d7aab15e3d5de9c
MD5 9a15b02eeb00377db8b08b9903fe4239
BLAKE2b-256 ac8326327506485b222d4f54b287a793a98a24d32b98c69530d636775a364b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 edbebe746575c9b31671cac310cf9ce11ea7780dcbd450dedf7dd5ee09bcd76b
MD5 9d93abcbb5237116ac613f12a117b215
BLAKE2b-256 0da3dda9f29b49eb5cc7fb241129d1395ea2868f310c252bbf491e911beb83ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 338.4 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 sigmaker-1.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 802a9e583b2e931422743ca3895a0da53886336a7694cf2a5cc755b72bc483e2
MD5 aecc21b5a18569d06f89f3302944a0b6
BLAKE2b-256 1f0722530672d935809f936e367ad569ad2eb4234de2adb6cba120ee12cbcfa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp311-cp311-win_amd64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: sigmaker-1.11.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 326.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 19f26d764c72867df583efc9f3be805260ef257012477019707bc07d51726225
MD5 b042aca40441f3a0be1bc0193aa8de21
BLAKE2b-256 f589bc09b097e5d3d4b081bc8f50b4d7116d976d610ea1d2ebd89b4986eede0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp311-cp311-win32.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b399bc0fb912c8219b288f03456c2b2e51d0caad2349523dbe9fd0d43519efc
MD5 3c436e9b7670a185b1a9cdfbe6e905eb
BLAKE2b-256 8e9ff310ece4b3dcb08b634da166d1400414df6c87c1d4641a07d5a19b1260e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bbe028b0ac7990a9864004ab51a9887a640a0d0df7bd6c1e9a7972bd371c69c
MD5 66f8b8c39c6bd89596d8bd465186a865
BLAKE2b-256 ea4ed455f328204d3a91cd2d14a3044d206691e297e41878ae2eb6ac4dc2624d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f937948a38a4a53777f1e08005942570e6cb1b0f01a92a4771cd8c675d61f870
MD5 84620d9c012b277acd0b7a77d2dc4799
BLAKE2b-256 c0be625d57e31ac162f555831cbbaeba93be17cbd9ce1225b1d12c6cc936900f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6d81a1b9296c208ffd7eb54fd18d08ce24952d0926c6db2adaf6e6ecb6f29d7
MD5 d38693a17b3cdf9ffc5c6c080ff3fbad
BLAKE2b-256 fa91ed5d04cf17d8312e1834c1b32011ddc657702d69db1b868d3db251949098

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27429cb3a9f73cb4b137f41915b708c897b3abdbf04f13b4aab7f95cc3bee9d4
MD5 dc2ae7146a6348f8c740ebc24904083f
BLAKE2b-256 639409808b0cfc654e965d1bb7d4c91edac9e9f116a46684d6bd217b5eed3a38

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0573f05022cb23f537a4e883f695954181ae6f9cd07740ebc611236f79aa49f5
MD5 88290de559bc8a53e88e7b154dbbd161
BLAKE2b-256 e2892f0277df8a8155c8a41658374cb77c4095bc5bcf690411cc2bb782fbd2c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 338.2 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 sigmaker-1.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5c25c6763a614f6d9c79ea746691f89fcc41060e4cc2569942752c889f54f87e
MD5 872d5281f21441ddfdfbe2e9cc4b68ad
BLAKE2b-256 c3c93245f0467c37dc58461edfbb9632a74b35f99fe176b96b2ac69954e7d9a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp310-cp310-win_amd64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: sigmaker-1.11.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 327.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sigmaker-1.11.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6907d5208284730827b3a5139389abee0dc007df1b298628082e29a66d54c39b
MD5 c4a4b0822777b8f21756e014b8218a3b
BLAKE2b-256 55f81a4efe90f7fcf9effd040a71ba99ea80dcf905b2e311a9e2cbbe58284100

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp310-cp310-win32.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb4c1f1dca8aa7caa586c9d1e1111373e719585f2db2ded21c5ad3e4eba702a2
MD5 ab1662335f0e0ae582e2e9625e7755eb
BLAKE2b-256 bb7995967ec3558d3f76d0955d09e85578be733eca83de0e8f0093f1901fe249

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b008d5ab4546d8d2131b764f56b8d7bdf07ad0b3003dc47f5f0a1f1464e0a7d7
MD5 f9043bfc18bf5050e0a26c0c6e8f82f9
BLAKE2b-256 78ed043483ba375648c6369d1540fa7e277dad397fa8bdaf1f18a833f35b60bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b904b26bbb1dc0dd20e31cd4ac4d759affef00b3d69f34dfaf76dc97779c6ad
MD5 17b12e75069e7aa873373acf26237a6f
BLAKE2b-256 31ece7b64756a5078d24e244daf8e813f1af66aeef66b15afdd9e156c1ec0f9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03d2da38420163a90a79f1bc5c786492e64d3f56fcb08f0d349575b6c09568dd
MD5 027f25b5b93e7b0b6b73c69ef83a5752
BLAKE2b-256 dbea7ea646845664209ba8df049fa0165e1e549da3e4f265d8fca0a97e2298e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a02a50bae886baa184afdb1baeceeb621549eef0ed328ca02c00c969e9159c7a
MD5 de6216733900c307ffa074e228200c90
BLAKE2b-256 d61ff1884d174694d23b675baf0ea46ec940a41e9a9e29c8184cda11f52bb6d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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

File details

Details for the file sigmaker-1.11.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.11.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3fa61e75a014ea9dc717fcdc88095619ce0f516dab4d8380b496a9326c08c66
MD5 712f6eecaa05ae752ec1178423f8734a
BLAKE2b-256 925afabaa61d5dfe4c9361901edacbb59a48fafcf1499cee5afca0b6efa3d32c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.11.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on mahmoudimus/ida-sigmaker

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