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.9.2.tar.gz (257.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.2-cp313-cp313-win_amd64.whl (334.5 kB view details)

Uploaded CPython 3.13Windows x86-64

sigmaker-1.9.2-cp313-cp313-win32.whl (323.1 kB view details)

Uploaded CPython 3.13Windows x86

sigmaker-1.9.2-cp313-cp313-musllinux_1_2_x86_64.whl (850.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sigmaker-1.9.2-cp313-cp313-musllinux_1_2_aarch64.whl (826.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sigmaker-1.9.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (854.2 kB view details)

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

sigmaker-1.9.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (842.7 kB view details)

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

sigmaker-1.9.2-cp313-cp313-macosx_11_0_arm64.whl (347.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sigmaker-1.9.2-cp313-cp313-macosx_10_13_x86_64.whl (349.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

sigmaker-1.9.2-cp312-cp312-win_amd64.whl (334.7 kB view details)

Uploaded CPython 3.12Windows x86-64

sigmaker-1.9.2-cp312-cp312-win32.whl (323.1 kB view details)

Uploaded CPython 3.12Windows x86

sigmaker-1.9.2-cp312-cp312-musllinux_1_2_x86_64.whl (851.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sigmaker-1.9.2-cp312-cp312-musllinux_1_2_aarch64.whl (829.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sigmaker-1.9.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (854.1 kB view details)

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

sigmaker-1.9.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (842.9 kB view details)

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

sigmaker-1.9.2-cp312-cp312-macosx_11_0_arm64.whl (347.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sigmaker-1.9.2-cp312-cp312-macosx_10_13_x86_64.whl (350.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

sigmaker-1.9.2-cp311-cp311-win_amd64.whl (333.9 kB view details)

Uploaded CPython 3.11Windows x86-64

sigmaker-1.9.2-cp311-cp311-win32.whl (322.4 kB view details)

Uploaded CPython 3.11Windows x86

sigmaker-1.9.2-cp311-cp311-musllinux_1_2_x86_64.whl (853.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sigmaker-1.9.2-cp311-cp311-musllinux_1_2_aarch64.whl (838.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sigmaker-1.9.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (852.0 kB view details)

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

sigmaker-1.9.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (847.8 kB view details)

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

sigmaker-1.9.2-cp311-cp311-macosx_11_0_arm64.whl (346.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sigmaker-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl (348.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

sigmaker-1.9.2-cp310-cp310-win_amd64.whl (333.6 kB view details)

Uploaded CPython 3.10Windows x86-64

sigmaker-1.9.2-cp310-cp310-win32.whl (322.9 kB view details)

Uploaded CPython 3.10Windows x86

sigmaker-1.9.2-cp310-cp310-musllinux_1_2_x86_64.whl (824.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sigmaker-1.9.2-cp310-cp310-musllinux_1_2_aarch64.whl (809.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sigmaker-1.9.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (823.2 kB view details)

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

sigmaker-1.9.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (818.7 kB view details)

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

sigmaker-1.9.2-cp310-cp310-macosx_11_0_arm64.whl (347.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sigmaker-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl (348.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: sigmaker-1.9.2.tar.gz
  • Upload date:
  • Size: 257.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.2.tar.gz
Algorithm Hash digest
SHA256 45503b79c5f8f760ae9b00abbd0ccd81ac4f5d4ab0aa3b4046a2cc42839c1670
MD5 613c31233bc9dd95a32deb05e3a53cbe
BLAKE2b-256 0674439d27ab2e9d2d366c5048e7ca748ff6a6227cc17d7f1b29aa61d44532c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 334.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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1049fa2afdd102bb00f88c21f57da4a6209ef6d7570ce77c48387cd428effeaf
MD5 2bb9c5b9d7bcbf24514d1e3300c454d5
BLAKE2b-256 c36a9e02448203b8bceb7c1d0ccced2165f29423aea104a996e0039286304b61

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 323.1 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 17a6e82ecee2dff987043a74fb3ede0079877a31a5f5a8b92b51478f36693a6b
MD5 5ff6d903c712d9492e70d6a27d531644
BLAKE2b-256 bcf1a0f95b05f1e1e4eb32ec20bfa69181592a09cd04310f665a141f32464852

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c833d3224c2881b8c31105e97c70f7db33ac0029d52e415492da1989aad378d
MD5 1bff7b0139d67ab89be0a5cf6ed6c041
BLAKE2b-256 d9d16364f793d1b690b847f93592e34c0552c933808a086495fc4b9d65d2d699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27e86ce624c97ccf7a9f03424f76f1b1b17b2bd45f3e3d4bd40d52ce79653842
MD5 07ab6f96a81dc1fa1b7900ae14850f35
BLAKE2b-256 a5137a3f98fa95852c5401d541e37ec857018a1a1a53103a66669402dd99ec9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 101ef40792c1255cf5512fcd7f5487f5316db6317e5000160c9e833127c4133d
MD5 17dba7ccb29f2bc6a67f542e2b769ff2
BLAKE2b-256 3813a91d32ddc9bb8263fc092e6c47514df0944adac9f878c22d0d9465c689f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 730182b1e70883f5329e69e17e58e8a17475e82ea453de44291754794d9d654e
MD5 e0ff32985c1c34d0c6b6413c9776f732
BLAKE2b-256 b542b09b79b30a00d06b43058323acea37448fc808cf263ee7e077aca921cf13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08c89d2a170497de80bdc55d9628be06f36287338ab0b7a92c2ad78556dbbe24
MD5 828fb9825d4a795342469ed2681855a1
BLAKE2b-256 38e2d94a7bc1f2b3acdddb558cbf74210100f7399dfdc8ca4f55c74bc82d841a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5f5b845eff2a1f8ee889a7bb2bad7e5fbe4655e098c78d7987d41fb7022403c2
MD5 880f7e5a3429d8d4494ca0755d3c45a1
BLAKE2b-256 6046cbb269ef6ae55e60749462419849deffa21fa2b3a2847f0d164cb147dbf1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 334.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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 38563a2860401ff40ba6ff5e773ac21cedec27c22e364d6c6b3e3f207824fe2e
MD5 879d51da7b1a4cc5653c1d290a2171a3
BLAKE2b-256 94a2879771aab79500598c43bb1b7f6537617d9658be57546e94d9f2a6897f98

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 323.1 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 80251dcd6b2c8097f937d6090522a73ce7563d344c493fb164070d00f574c8ae
MD5 7b111cee029f8b379b4387ba69eed0a8
BLAKE2b-256 0b65c7573043bca91fe2a0169dfbd84e4f2f47359b89880ab58d66519ab7c65c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f72171c24d65936b4e3845d7d6c59d1637142e3d28f342ae8073f179f68c86e3
MD5 6accbdb294faeb88b22322db5d8eb19a
BLAKE2b-256 06c4a27be83667ee6ab99e354ffd69ebdeba0f31f6371f10bf5b491eb2b58995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b039496e40953c11ce1c5a4a04a99b8a96728f254216ba888deed3365a43fa6f
MD5 c72cdc34add1243f91c3397fcbc12111
BLAKE2b-256 6edeadccf91bceb75baeec16dcbf43d3b0330f01d44ce9103ee12b06de493c7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 333af54209c5f28d739feab0bc759d07652bc8815738f71abe4f16ea69987dbc
MD5 36bf55a117bfef390abc3b42bae32465
BLAKE2b-256 3311b1879785f89275aa90da18a7d0741a3409732ff4757a1067474ec35a24a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd6329e198c0c5e2252a336dc1342916a85f8b842b9ce994f206eaa3417e8ec5
MD5 b5ba9915c749cf0e1a28b2e9787009b4
BLAKE2b-256 135ce55c916cf8dc3e7d7e3903f4a573681d68d25d4e51dc1ce94cb132f528f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c14345024d071333d02bdb7eb63f71941f7d4c474dfc5816886d3d2c63350c24
MD5 20ca03d03fbbe70a0edcc4bbb89ffd2f
BLAKE2b-256 3a0381c593fa2c63da49b287e87eb7c80d478913a3d4b7f2d0bb40815f16e0bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba4a517b689251527f4b03963e3233ae8f22c16757365501b4b28daff0b9231f
MD5 8dfe041e21a8d635e1ecce05e9861d03
BLAKE2b-256 9e012b5f5d36386954feaa124155c9664e0e43a0e1683b0f540efa17a2cef386

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 333.9 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cac76648ffedf2cd1b1f4db8fbab869f452b13b1ed99af1080fd0db67db9e45a
MD5 a8f043fda4fa238bc442522734cf17bc
BLAKE2b-256 af90b70225fa6448fd5170a22e16381d910dd4adaadd64d570b61edbea606114

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 322.4 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1a79fcdb232ae723394d6ad79c7ee56fdcdfce431a4a3e1373f98dc616f3d658
MD5 8c9f1099c6489577e4f0457e0865b953
BLAKE2b-256 b9be4090e51bc2413033eaf473dfc68ff3fb7ca78ba79cbf2479298ec033c7aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58d750fa32a3e5f01d4bc73bc51d5b67912a550827168b9a0becad7a39a5f8f7
MD5 8a40deac85a52d9762f8e8c56ca9a4d1
BLAKE2b-256 ce5644ce65cc2f2dd4ed791e9080bdfc4f250c3995bbfb9aac17be23013ff19d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2e340cca717e0b3520be48f0d5c6fb53cf5b56fae147d6ed4f13eac5b0301da
MD5 eb6ce7bf3f3cb8f53001a0ee431d72ad
BLAKE2b-256 13957b84fc2fd6f39e46199a2d1f88de330a4b1aef78c8def11e9706d02e014c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76b6af58a45e8a270f7c36f98a863ff1e0aa6a3c41de23706deb0c953dcb3ab7
MD5 fc9ca95432f27863b7bd9b1834dc6abb
BLAKE2b-256 a2a1634387f6cc8e1232c3849cf7abb01259b608a00dfc032e2c8524b9591566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4851923735abcd4bc71474c771ee772d46c6216584af5c05961e4ba855c77d9c
MD5 b79663f887c18a36e13eda24de8efb07
BLAKE2b-256 ad11de725d93636e2bb1a15b1e360458eb0ad5831426dc5e0f1e3cee66db9f84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8c21492d7a34ada015e717cf99e3e70186627e5526c9722e2bb11aeb1028ab6
MD5 77b3951b8d644e3161259a78f8ddfbde
BLAKE2b-256 c210136841b5dccaf87816c1d9a527ab401aa08b07d7f47fd62449f8af45df76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 928d141830907186614ec7aa7b4625372f966b02eaa8417de9305c7c91e790a0
MD5 ff34ac741d035c2c4d9be99a234104a1
BLAKE2b-256 4cf7a9992e6f2a936d993d2274e59fab8b7d7ce02621f434548898d20463723d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 333.6 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d0ff3f2e85b96a5be540f470bbed995a9dff4835acec3c6a2d39807b6852801c
MD5 4200bb29d237661260fabc4029500b02
BLAKE2b-256 5155d2d9799b1053fa15218827e106ac08682fddeea325f2284e9e12eaf15d73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sigmaker-1.9.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 322.9 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 975956a90e7dccad20d1f8bbc9a9cfa2eea2d9e403e8996af4b694d88d8b88bf
MD5 694906227bc72084b575d052dd09adbc
BLAKE2b-256 dcc77aa29ffc659d2fb740dca6449db3a46c8f817281292019bc393c190e52ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9a92ff68db1f56fb0f070b27e717284f9c9c51820f8e3842f5cfc048f03f471
MD5 82fabef7b8af5db10da5773ea8dd12e5
BLAKE2b-256 457e06a2eb6c45384e606b4eeb5c8174b9400a6c8a906514aab68d1faf522246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 165b7c5ca66fcfa38c279aeb1b9fe10422c5ca0badcbbb41bc56d8267a147232
MD5 0c769cd882cf2c3ff364bb9d5ad025d7
BLAKE2b-256 7a19b532724d292b7e108f5cc1d47718e627462818b6f6149f4e3992b5cc8fbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmaker-1.9.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a26581e37711afbcc6b1afff55ef00613e0522403152164677ef72ce669cd88
MD5 0bc6147df443abad6b73bb053bd2b86b
BLAKE2b-256 39ebc10ce78b862dccc7d8d61cdb4f6f49ca2fb0a047d059f605c17bb432855d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e23ca547157ad33421f0bfaa7a43c808186388bbf2856d965b474fe2f84a1781
MD5 8e52abcda0cdf6c3131b33a63e7b65ae
BLAKE2b-256 b86e7108a309ca224d545632b11210f8e98ed59a778d4872e83a9fddd5342a7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5d0c160ea5269407acedf921e9a0da8908fa874c3513a950ed56fb0231724e9
MD5 b33e31fcc25affbe4b49a85d37a80d3c
BLAKE2b-256 cc58c4b26262e7bf03295592121d2dcce7df7f3db4d985f16cbc597202f30654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sigmaker-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 331d2972119d58bb1f902703ef9a5e8e2c6a1140799439fa6d584cf213697bdd
MD5 537164f81345548b2b731d9eba2ffab3
BLAKE2b-256 7cfea761da925709520e09401ebed46afc24cf27ff759a0cca9f2a8b7b278f5c

See more details on using hashes here.

Provenance

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