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.

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!

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

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.9.0.tar.gz (255.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.9.0-cp313-cp313-win_amd64.whl (335.2 kB view details)

Uploaded CPython 3.13Windows x86-64

sigmaker-1.9.0-cp313-cp313-win32.whl (321.9 kB view details)

Uploaded CPython 3.13Windows x86

sigmaker-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (848.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sigmaker-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (825.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sigmaker-1.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (852.7 kB view details)

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

sigmaker-1.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (841.2 kB view details)

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

sigmaker-1.9.0-cp313-cp313-macosx_11_0_arm64.whl (345.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sigmaker-1.9.0-cp313-cp313-macosx_10_13_x86_64.whl (347.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

sigmaker-1.9.0-cp312-cp312-win_amd64.whl (335.4 kB view details)

Uploaded CPython 3.12Windows x86-64

sigmaker-1.9.0-cp312-cp312-win32.whl (322.0 kB view details)

Uploaded CPython 3.12Windows x86

sigmaker-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (850.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sigmaker-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (828.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sigmaker-1.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (852.6 kB view details)

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

sigmaker-1.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (841.4 kB view details)

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

sigmaker-1.9.0-cp312-cp312-macosx_11_0_arm64.whl (346.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sigmaker-1.9.0-cp312-cp312-macosx_10_13_x86_64.whl (348.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

sigmaker-1.9.0-cp311-cp311-win_amd64.whl (334.7 kB view details)

Uploaded CPython 3.11Windows x86-64

sigmaker-1.9.0-cp311-cp311-win32.whl (321.5 kB view details)

Uploaded CPython 3.11Windows x86

sigmaker-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (851.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sigmaker-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (837.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sigmaker-1.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (850.5 kB view details)

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

sigmaker-1.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (846.3 kB view details)

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

sigmaker-1.9.0-cp311-cp311-macosx_11_0_arm64.whl (345.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sigmaker-1.9.0-cp311-cp311-macosx_10_9_x86_64.whl (346.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

sigmaker-1.9.0-cp310-cp310-win_amd64.whl (334.8 kB view details)

Uploaded CPython 3.10Windows x86-64

sigmaker-1.9.0-cp310-cp310-win32.whl (322.0 kB view details)

Uploaded CPython 3.10Windows x86

sigmaker-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl (822.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sigmaker-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl (807.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sigmaker-1.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (821.7 kB view details)

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

sigmaker-1.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (817.2 kB view details)

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

sigmaker-1.9.0-cp310-cp310-macosx_11_0_arm64.whl (345.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sigmaker-1.9.0-cp310-cp310-macosx_10_9_x86_64.whl (347.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: sigmaker-1.9.0.tar.gz
  • Upload date:
  • Size: 255.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.9.0.tar.gz
Algorithm Hash digest
SHA256 9ffe584edeccd10ae6b7202c29cc3c5782ad29440a99e1227db6c34b911a77fb
MD5 208e7a23588ba6dc9da698b5fc9a5b1f
BLAKE2b-256 8f48a302a2c340802bec52c791222c45a85847b45d70920690c49e5342eaad9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 335.2 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.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 48303ebbce70d6322fe5515d080e86bd6a6c4036c0bed1221e87ce28580b902a
MD5 15c6f508525012a95dc445b8aa16be18
BLAKE2b-256 b2b6695aa1a08cd8fb1dad5cd88c6d7b13ab9132e414fab4aa6edf41142ea399

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: sigmaker-1.9.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 321.9 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.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6ce68d863460f9a043c5d3dffe92ea205e68a0908bf59e680899487c5e6eeaaf
MD5 06b84cafa5cc9ae95510d05e1929e8c7
BLAKE2b-256 b8e9c8dcffe06c14e8d2d2153356335ac0fbc37606d812b2a876a867d98bfd1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f1536fe36cec9e0a0a6f4cf6e1154c0fdbe5eccc9c4a084548b112e9895a8a6
MD5 8dd83564f719ee13fd691c7fcf5c5920
BLAKE2b-256 6981a8fb0624a9b2db7edc0514496bf2fd0ec2376c2d4afcda478211f1bf105d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d6543ee5b29aab0e8b6ac6ba04b715c06ef4cec46f45e273e470980214a3006
MD5 1ea07eef119e713e1e3f5942812567ac
BLAKE2b-256 228d19f511c8193b6a7e3f89ad19edab8c5cd8c5adff0421cf91ef29cf7ba352

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.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.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbf595e21e1265991a86db883a4dfcd906c5bf54e1108a409bce55e09153430f
MD5 9d87f54dd0f48277932a69f1dcd5e1f6
BLAKE2b-256 f64ad24ffb6952fd82887dd5d9f689c53ac39eebaf1d1548689d139a3756f289

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a31ceed802792a2d0f89962a9b4428fca29b474d9df0921c23660cee1dfc679
MD5 f6bdd396ab676c7cd2e19afa21c00365
BLAKE2b-256 d958cbc305b3dec0549650366cc0b5550ae18065f295924d0746ef96878578cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e8c04ddd87d4e4b7ed4e46b807bc8bab3ca0a786164a6566c60e503321f13f6
MD5 696b8f62174bb6a5d64ee7dc24ddbc16
BLAKE2b-256 7552145dd1ca7ece5a8a42a14638c6f44b6047b2247c601cd49131b63dc4fe8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d0efeb6da3870a999f3a71f7518a747808cca7f3b2ec9c562c60b56774dac5d8
MD5 c7fd8da6c06014df76c1308c2d49b7dd
BLAKE2b-256 37efc7141f905928c52b5a0b4bd714bd7a80809f4b1826a256fc071679918844

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 335.4 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.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d0dad8d855136c8d7c62d8e96f2f1154cf8f309b227b942f833e901e4b9aec84
MD5 28d5bec4b1f907721126466b05701bcb
BLAKE2b-256 9229c3bed221d8269cb32f8f6b8d8e8492d1de8e9fcb32b4f599f9087a107cec

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: sigmaker-1.9.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 322.0 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.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 38d7937e2299fc23bf4eb6f8e05cd7860362f2589d5699acc40d0b4920a630bb
MD5 b9d027b1596a4daaa7733180bb0d2859
BLAKE2b-256 c891561bf42978120e2293940c6ee0277a97b8083aa052cd7150d12d3a141d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02b393b6ce7f6ee4a1fdb1b3203fc257ca4577fbf3a1b6c6b2393029b212f4ad
MD5 5dc28ba3ecca5cf0c2463a05f2fc261a
BLAKE2b-256 cc211fdac09ee1526b548f1000d39365d22574b31a5d29a44dc47701fe8d2f74

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9302e95a4765779db4adb2cf2f1ef5d145b848dab33c8eda86e585491135b38
MD5 fa8908519bfee70a5c783de78c043ffd
BLAKE2b-256 040ff0a7ff2bbc11fc506cfc985f1fb9ef24ef26b38da5b112af2745f3cb77cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.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.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9bd45bbb6d7b2ee797e795680659e930bc21bccbcb8fba795ff0722445fc574
MD5 16011af3d6ec1ad684951ee9c93f5b38
BLAKE2b-256 99cb85694fc3677690b15134e3d4050e884298ddaef06712e2fffbeb32179633

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1bb9c8fb7320189365ede1896f40e08157313f317de5348eccba505856b3cf9
MD5 39e76a7a91beec85c7eca5eab03d1b15
BLAKE2b-256 b924278cc736edba29627b433a2fa5f4c1a7121d5314a120d01e007e7b040183

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78ede27570e6870acf323ca9586d8370f72c06ba2d34afcaf56d0ea480cb2b3e
MD5 74c85de9b2a6b0d4eba15650d3c5823d
BLAKE2b-256 25e3bf5ac51a73af8480e13008bcc75ec5c4a27959f227145af48f06de08ec65

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 390c99dc686c6300084005cf350018f131a45bb5f2c01eb384ef6f1dfd707b26
MD5 3b6c8478719b72b39e34359da5523e25
BLAKE2b-256 fcf10871e21d67f5b4c0d98b1221af72a14b06e63f48232613b12c46a2ef2a96

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 334.7 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.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab70c67894e0afd7f96df6dd74d53439cdb300b730718c62d3d83265b9bccfab
MD5 7bbcafecde26ec05df181ced866c533a
BLAKE2b-256 5e37d270bf3e3f5d748a44791537566fa94111655f4cc10424a48d85ab9838d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: sigmaker-1.9.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 321.5 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.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a339cc5045cabd9beaac5031eb8f2e592513b6b49809ad8c6ee8e1f5ab6c4ac0
MD5 ceec73561da1fd7b7deb87e2a5f0708a
BLAKE2b-256 0aba22e0fc5a2f3a87ee570aefacd56896c8fe86d1d3b45cb29bb717cf8fb147

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c553b885f4153be7ab0f30da9944d044ba73c44d6659c88103165c0637a01f7c
MD5 f19d4fd8efb2fbf1c4bda9541c336f6f
BLAKE2b-256 fc56efea02b2ace0eb7a54e88a53c91cb03155b5fb71eeb978af81e34e5a0b49

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 285ee254db4e94152415a651356377462eeea6d853b64bcbc4a06cd2a95bc9f3
MD5 fdf34eee39f900ec7a550b2ad5e1bfe2
BLAKE2b-256 f08d77348e744a33beb561adb6061df67be93d3f5a2e7a97140becf8b704797f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.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.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 018dda281e0a67a374391eaa265f3fea49f36ea0df81f54a908b8b24c0b5ae66
MD5 35edce99c984fccbc28fbf464e0755cc
BLAKE2b-256 8f7ed2313cb0f3288d44e531938647542d5bf1dd187702c5d6ec8a5ff5da3139

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22aeabdd7580c8d8f3ec3fc046a14f330a2265adb50de2223e9f00be9392af88
MD5 3b98e046be3f0047e928e6a48de26242
BLAKE2b-256 3f44835b92e8e0703951bdb5bb8ad48246ac29e403b7c84d53ee5802a62b1c5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22b1fa5887266d0acdc9938890b2aa1ee1478826b3340132856faec2d191c1bc
MD5 a9738037cc6e522d1d43bc71d4f8de91
BLAKE2b-256 ac0aab0044587c55165da705296af10f17509d1b9d7000a5eb9df6cf7ed58683

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 024a5e78bb0aee4369a151cdd92a6d1d1ef9bb696f7345299f22144e27034fb0
MD5 fbee8ace67d25585f972e355e7600f2a
BLAKE2b-256 c9728ccdc096a59e5d613462956d52b352ae9aa01734046c76f19ce384f1eab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sigmaker-1.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 334.8 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.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 77b4629438b782f5c287149fe86c70dc7dedb1b639dc48d4458ccb44d7ff95aa
MD5 80a7e715544bd352c26affa11ada53c5
BLAKE2b-256 9e9c31db6568b2f2eec3b4538cf62e798b43e9b7b6c7bcdab734985f3554f9d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: sigmaker-1.9.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 322.0 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.9.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 abbf1b199ca94e0d002813d81ec2ce6d600182f4e3252d08ba156fc748a9ff5b
MD5 6ac0532617c7fdd6de155c6eb4881712
BLAKE2b-256 f64e511ed0cf68932ddd86bbaadab9e6df8c58c23cb2f71c0ee97baa49606b36

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a91a8bf7437bdc2431bd9caacf09c6fc6d0a7a35a68388a837814792c08c0c6
MD5 6543fa623f96b35ff9e6354f46638747
BLAKE2b-256 a65ed8e06b9ff9043dc04760f2ea50ac7389524148c091c0355d01d1eac13a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a9ec0ac5e3f28f7df75beab06c0fbf520bd63007ae9b70f372ccc9bb60ca549
MD5 edc9219036f181a46fe786ca63111197
BLAKE2b-256 32a6bdda472be26d6c32fe36ea90741258b96ccc2027dfac87356b16c6641186

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.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.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66a1565b265d626820a89f501dc4d33a249871f7acbb8bd08cd7d70bcfcf0978
MD5 6e38ad9f68bcaf8056d23c5fbc6f0f20
BLAKE2b-256 5e347018b0fcbdb29c1ea6f1be356efdb4422d5bdd423b65ede813eb2e47fb34

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba4fe56aa8e9fc4536f9ab5feeceef52d93d2fbbb23956257112628f35205e6a
MD5 cfd6cc40a9c4308e1af7b7a90028c37d
BLAKE2b-256 5932e4bd5e086cbce6ce887799fab5cf5a2b0fa2b8871035d083c7f756a52249

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dca2bc8d1f55b0e068eb7050b9c78c682199111eb5919590e999bb7fc3e9167
MD5 ebd324df0cde37471567c4d916f8acf9
BLAKE2b-256 082afdf884cb0566aeac728d4e3fa60eb73fc355f0561775f4c26bd36426da49

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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.9.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sigmaker-1.9.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ff38c4074538cb16f6c816b9db3fa6dcf816f9d01106bf76631d021d472c6ae
MD5 8503a2cdcf420fe9dc22e9245bf6d0a1
BLAKE2b-256 8f1c8fb1b386062b80171e16eed428b95038ca674e328e4bb685111a37db283a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.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