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.1.tar.gz (255.3 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.1-cp313-cp313-win_amd64.whl (335.5 kB view details)

Uploaded CPython 3.13Windows x86-64

sigmaker-1.9.1-cp313-cp313-win32.whl (322.2 kB view details)

Uploaded CPython 3.13Windows x86

sigmaker-1.9.1-cp313-cp313-musllinux_1_2_x86_64.whl (848.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sigmaker-1.9.1-cp313-cp313-musllinux_1_2_aarch64.whl (825.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sigmaker-1.9.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (853.0 kB view details)

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

sigmaker-1.9.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (841.5 kB view details)

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

sigmaker-1.9.1-cp313-cp313-macosx_11_0_arm64.whl (345.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sigmaker-1.9.1-cp313-cp313-macosx_10_13_x86_64.whl (348.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

sigmaker-1.9.1-cp312-cp312-win_amd64.whl (335.7 kB view details)

Uploaded CPython 3.12Windows x86-64

sigmaker-1.9.1-cp312-cp312-win32.whl (322.3 kB view details)

Uploaded CPython 3.12Windows x86

sigmaker-1.9.1-cp312-cp312-musllinux_1_2_x86_64.whl (850.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sigmaker-1.9.1-cp312-cp312-musllinux_1_2_aarch64.whl (828.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sigmaker-1.9.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (852.9 kB view details)

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

sigmaker-1.9.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (841.7 kB view details)

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

sigmaker-1.9.1-cp312-cp312-macosx_11_0_arm64.whl (346.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sigmaker-1.9.1-cp312-cp312-macosx_10_13_x86_64.whl (348.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

sigmaker-1.9.1-cp311-cp311-win_amd64.whl (335.0 kB view details)

Uploaded CPython 3.11Windows x86-64

sigmaker-1.9.1-cp311-cp311-win32.whl (321.8 kB view details)

Uploaded CPython 3.11Windows x86

sigmaker-1.9.1-cp311-cp311-musllinux_1_2_x86_64.whl (852.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sigmaker-1.9.1-cp311-cp311-musllinux_1_2_aarch64.whl (837.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sigmaker-1.9.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (850.8 kB view details)

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

sigmaker-1.9.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (846.6 kB view details)

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

sigmaker-1.9.1-cp311-cp311-macosx_11_0_arm64.whl (345.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sigmaker-1.9.1-cp311-cp311-macosx_10_9_x86_64.whl (347.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

sigmaker-1.9.1-cp310-cp310-win_amd64.whl (335.1 kB view details)

Uploaded CPython 3.10Windows x86-64

sigmaker-1.9.1-cp310-cp310-win32.whl (322.3 kB view details)

Uploaded CPython 3.10Windows x86

sigmaker-1.9.1-cp310-cp310-musllinux_1_2_x86_64.whl (823.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sigmaker-1.9.1-cp310-cp310-musllinux_1_2_aarch64.whl (807.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sigmaker-1.9.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (822.0 kB view details)

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

sigmaker-1.9.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (817.5 kB view details)

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

sigmaker-1.9.1-cp310-cp310-macosx_11_0_arm64.whl (346.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sigmaker-1.9.1-cp310-cp310-macosx_10_9_x86_64.whl (347.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: sigmaker-1.9.1.tar.gz
  • Upload date:
  • Size: 255.3 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.1.tar.gz
Algorithm Hash digest
SHA256 93dab0b3015346a8b4cb26a1d09408831f7b9bd7f187a3ca50b5a2ba86554a18
MD5 d32a048a0c9d72006aa6da9afb288d45
BLAKE2b-256 be80476132a60b50d768593608e3eb17fd62cefa6204d189db3817bd69a3a075

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 335.5 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f62441a6404a4835610c865f25ff33a8ded3c960a732440f67e5372b28a12b2a
MD5 53dd73f1eaeb5fcb6cda85df30121b85
BLAKE2b-256 eb4ea2cdf1b5937b4554e73088ff1c4bb42365fc847b422abffb922477e69cb5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 322.2 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 da00c63adea8695257bebd17d2585b6050c0f3b0107bd20c8598017da7a8787a
MD5 0b0953409985f60698b7cfa304e0859e
BLAKE2b-256 f6ccf209f33b310442f580a77544955a4d34ea8f1bb1675f9125abd9373b3b94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5ca2f49c785372408bdda54e7168426a4fcf2753597927231d1517ae35d4c9a
MD5 50253071b1e726caccaa00b5052620e6
BLAKE2b-256 fc9d4a3f6bfe9aaecc36f1d182dc5a6710caf53314f9f5199d9d5c27df79193b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40f52519298687ad52068ebcbbea67404483876e62089d3bf3b67b298d9514ad
MD5 0428296476cf09fe727422dd3d7158e5
BLAKE2b-256 6198aa8bd87b66e872671b745ca1f4410c08a0f7487286774ff44bea4488e1ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6825b23c30ef8e6c3ce130c47cea203fb54baa9dad2f1272b141bb2c0a5edbf
MD5 3004f391a0c34531631a6d17660828c1
BLAKE2b-256 2c1eda19b48149c41ff4699c619eeab17ba3372eac004d8ab40d430b05fcd83d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91611b1b4029ac02295652359411030a1327e8e3f6b97983fabafab683cdca65
MD5 600b77ca876baf5c24692322143c0636
BLAKE2b-256 e335301a8aeeba327f76286375944d3354791683dbed390b2d5d77af3b3f51f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dbc721f163cd997757b94ab0927ad536516a14bedb2e727a6562264c88146c8
MD5 a3be8cecea4d42b37982307282cfaa8b
BLAKE2b-256 56b400cfe72f65a31411d87946ee901047a860539fbc831fdbd7bbe0cbd1d5d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 152233af435ae55525c86f872ef1ed47332b01324eb77e73222cd6d7af49072e
MD5 8b2a8d1fa6297b5aea62ccceb06ca9bc
BLAKE2b-256 e13b90590fd97b3c5009c5a4421eb69777b23fecc35788be3b15201c903c3d03

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 335.7 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 68f1676d9e6d1144ebbf8d55cef579e2565e5cbb4324940b10c033a9a2febdf2
MD5 87051c35c500888ec604b89c181143ea
BLAKE2b-256 98456221a81f1c30b9250c1aa30d287d13ae0efc925a634870fab5faa671224b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 322.3 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 83667f90830a4869e7eb1192f72a24b9cb39cb937e7b0d83dc5b5b8e78c75554
MD5 e688ab6dd98fbf48118656b770856e71
BLAKE2b-256 1488d9f83253fa448b547aa5c3657176015c7064c84051b4cdec1823d8839f82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eacf88170c074135b4261d6c756ccd6775fad4f3a0b5f5e3dfad52f9902b717b
MD5 56e8e73870a18c7e2a7827ef2ac39a3b
BLAKE2b-256 1ada2c4129691149bb39c1f70159ef0a289dcbfc3c7394a564680196e7f771e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a78fef1def4bc06af6b15faa1e3dbcda304caa758ed2bade9c8012d5aba0d770
MD5 6014ae59bdd8f0c979e32f929b9fada7
BLAKE2b-256 48a2d91a12e38d7f7e93bf5edfa6b415beef24ecc3071cf1d5167739da63f1ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b62a4851559614d1f654504eb8e43121da1ae42c0c673f89245cd9b25d2d4481
MD5 ebccf5133a3fc6582aaa7f4897e67462
BLAKE2b-256 0100d71284a2c4f9f5436a95f325be0fbebf9b9ada39d5cd214dca3c80657ccc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 532339f29b60fc9655271e53086fa2369f42d35b0141b1072d9db9ac650ca3d2
MD5 6d19bfec7d91d1c14e41471011782610
BLAKE2b-256 73c35f22fa136daeb93ecdf23bdcdc5193394c40316d453c2c1b209b385163b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79e8c795dfcef8d6d40c62c35a18d3664d33da89eff75b662b64d47f5f5d6ef3
MD5 7bd5990d518ea4c2ec44da332f19a8e3
BLAKE2b-256 36b63e8b985282a49febb77f0eee3dba8060c4b16d5242ca02b540163feb57ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 015449a03e0ee62ba4a8dcdb945acfb6c5acf49a2fff85442e589d87f7b01999
MD5 a1a79feaa409a1c3b3c44ba8eede1ce9
BLAKE2b-256 a1ff543d5f4cdfb99b041ec4cd3b74b119e77afc2abe1840e72aac3185d79aa9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 335.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 sigmaker-1.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 936c4e18f306c6017a775cca1606608b4ec0d0e9729f7596b42dbd2dadbe901a
MD5 87c1bb35247822d5dc4177c0b5bca4c9
BLAKE2b-256 30784ea1249922d110e1d940b790c25feeffd03c27c0a03ea61a3cea8565cee7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 321.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.9.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c5f8c06dd36e0673b1a49a8c37db306cb5c2ffbea8da1278861cce473e0b9399
MD5 02cf60d8712e124be98c14caf8522db8
BLAKE2b-256 edc616601d8b70fe379aeb701e2b9d0d31bde8c6f394cd6b12c40f2a1e37b8f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dfb36cb82bfda2426e3a3a897c9e3c29f9f0a607b2e2ec5534dc1289384c45f
MD5 78cefec1877953b472ce316417637e5a
BLAKE2b-256 2bf0062a9b83c47209399f3e29e749d43ffe164253a5886d2a9b5c42e48d593b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bd44fb0416e644f4f07abd7658b844b2cd37681c41dbb163a8418cbf25ba47d
MD5 b716dd0b55fe666781212755a99588ee
BLAKE2b-256 1a6f087291524c0645b63542961ca7db0b8d6524280c842a72730298d19dac95

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b0113f5a7402c75572b91edb7bef4a1f7377ee00317a4e44c8dc78b228a14ce2
MD5 ec79d9730fe0f8db66a8b5c755e3b360
BLAKE2b-256 54e203da2349e5d8506a2bd461ffeba512e9acf62538a2fc1765ca40e1532728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6b53d5d0c8a6fef579efce510f11af3e8b77cc0af976d2c0b8e5b4f8ff46a54
MD5 8919228d2969528990d29e00d5d3761a
BLAKE2b-256 a552baa61844c6c33423a8f8d186a1d4e2cf9eec3deb788a408c82bc45090873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bee0c2edf1bc17df4633511289adfe6d94913c4d9533f0a2df4fd64e6efb2cdb
MD5 5be8fc212aa86180dd58b5fdba32b605
BLAKE2b-256 ba46482c57e72db95aebc95c5f0bd2c05b118d3d28b7ab1ce4c82ebd4079ef77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4649cb7f2de5d4856dbedaa92487c3c4e4649d815e885aa4439b933029d8e7cd
MD5 581eb5917714924f5f74adc8c8650528
BLAKE2b-256 dc32fb6db877cb1627e1dd2622b8043660ae3e05b92ba718f1f63531e5c3b84f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 335.1 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b4e45b4d61c34ce16ad5835500d84185de43e81ca9df29e0ef70eccf0f0996b2
MD5 2bbe754edd77fd2d03b7b487769a058b
BLAKE2b-256 0c4b4161a5146bc5d4ad6018b5e128a8c39ae24e6356cbba08c0d4d45946a0aa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 322.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.9.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 573b1935b7efaaa3704f7f4d80b1fc2a1baa81a2d0212351da308f24068a486d
MD5 6ef0d36838fd86e4e9cc07be56c97f30
BLAKE2b-256 6614a02f2808dbda3899e4755eeedabbfbcdd30104b3ac49a6d30c08b27d7e1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a92f6e18bb1bb34d7e74746da71e5d19031ace2a90d2d26aee093ef1cba6e8d
MD5 c1a187d07f60edc1acb76d6f4bbfe510
BLAKE2b-256 4226088f142d3d58c581048360c6df03f336e15365c2a12e86110381ded32cf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20b8f5d6ce3ca9ef06c6c3c65776e1849a96c7e9c728a76022f45186946e7178
MD5 ad83ab1a2dc98a9bdea7872182368cb3
BLAKE2b-256 4a149bb6cd25af5f17c3e889994123b4b9d5b5c597c8953b84b873afd1c89caf

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35e15a9353248ecf28197b668bd39c00090b618b293ca7aa1be57b2e74d15821
MD5 7c6cc8c72c27a28a57b0076518b8cdf3
BLAKE2b-256 8161e70d3d226cc7ad6ad7f832497bec7a4ec64caef7857dedfe54951cf64e8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f5a1eed9412e60ccff148d5a3624f893566ee10a1b9324ab6a53099d3feabe0
MD5 c69ccd041a781307ea872b67f5f02f65
BLAKE2b-256 d769ea5d1eeaf5c1053d7cda9524d41f75190513efd3bf99fa380c6f72f8818a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4aad34196a8f7091d4624bf6b52f0ce08cb7dcd08b69aa70ffb6947acdac6a52
MD5 c9ab716d9058d5bb1f7e64f1d50b2b21
BLAKE2b-256 006a43db56f6af9987f09ecaa6717602bc4208f228c28d4242a22cb4d186acf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 598ed3c96bfc2c12f9d69b18d42cf2f6459a4a5b7ba2a674bb27d738637a87d1
MD5 74076e79f2ca594344898a2bb5f49adf
BLAKE2b-256 7f09caad90052a630f4cd7a8c775f0fdeedea980e3a7bc24d669088f6fa8d455

See more details on using hashes here.

Provenance

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