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+
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:
- IDA Pro and Cython: super-charging the work-horse of reverse engineering: how the optional SIMD speedups were built.
- Growing a unique function signature without rescanning the binary: the search algorithm, with interactive visualizations.
- How do you know your Cython hot loop is fast enough?: how I confirmed those kernels are already optimal (memory-bound, not compute-bound).
Table of contents
- Installation
- SIMD Speedups
- Requirements
- What is a "sigmaker"?
- Usage
- Performance
- Using SigMaker as a library
- Acknowledgements
- Development & Releases
- Contact
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__.pyinto the /plugins/ folder to the plugin directory! - Rename it to
sigmaker.py - OPTIONALLY, if you would like
SIMDspeedups, justpip install sigmaker - Restart IDA Pro.
From Releases
- Download the latest conveniently renamed
sigmaker.pyrelease from the Releases page - Copy it to your IDA Pro plugins directory
- OPTIONALLY, if you would like
SIMDspeedups, justpip 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 sigmakerSIMD wheel, the index build and the per-byte refinement run asnogilC 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:
- Append-only config.
SigMakerConfigfields are never reordered or removed. New behavior arrives as new fields with safe defaults, so existing constructions keep working. - 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. - 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), andXrefFinder.iter_code_xrefs_to(ea). - Stable format specs.
f"{sig:ida}",f"{sig:x64dbg}",f"{sig:mask}", andf"{sig:bitmask}"keep producing their current output exactly. - 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
sigmakerand exposes signature tools throughSigMakerConfig,SignatureType,SignatureMaker().make_signature, andXrefFinder().find_xrefs. - koyzdev/sigdrift is a batch signature-generation script that imports the library and calls
SignatureMaker().make_signature(ea, SigMakerConfig(...))andXrefFinder(), formatting results viaf"{sig:ida}"andf"{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
- Fork the repository
- Create a feature branch
- Make your changes
- Test thoroughly
- 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sigmaker-1.10.0.tar.gz.
File metadata
- Download URL: sigmaker-1.10.0.tar.gz
- Upload date:
- Size: 259.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fe96590875df72bb2fb08ecea90eb2d2edccb926568c407c36aa3e58b39d6a3
|
|
| MD5 |
5f77783ed11b4f62d54217beb296cbfe
|
|
| BLAKE2b-256 |
52b46c1443a0f22519c44d3f65cffd9ebeabc54d60e45b73e42a76e8610a304e
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0.tar.gz:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0.tar.gz -
Subject digest:
7fe96590875df72bb2fb08ecea90eb2d2edccb926568c407c36aa3e58b39d6a3 - Sigstore transparency entry: 2064028025
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 337.9 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27b3f3eca702a8d5262cec1d1af9ea6b43bee59748e46bb4a96e9f7c07380c9e
|
|
| MD5 |
a9dc75ede6331df268ed426127bc154b
|
|
| BLAKE2b-256 |
e06e2d214e5b6045dfd1fbb71ad5db2c44a00935fc205fcdecafba2c78c9d1d1
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp313-cp313-win_amd64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp313-cp313-win_amd64.whl -
Subject digest:
27b3f3eca702a8d5262cec1d1af9ea6b43bee59748e46bb4a96e9f7c07380c9e - Sigstore transparency entry: 2064028397
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp313-cp313-win32.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp313-cp313-win32.whl
- Upload date:
- Size: 325.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca3a9a6fe7fc5ddd9a0fe4f67514cc8a3385771f80ce8244cf3cdcbfe2c93e9f
|
|
| MD5 |
5ac14d705242528f6c147496dd004865
|
|
| BLAKE2b-256 |
4a4683e77704ffd4efa3e2cf8bab6335e9ce87641a35596b237b1731eacdddfc
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp313-cp313-win32.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp313-cp313-win32.whl -
Subject digest:
ca3a9a6fe7fc5ddd9a0fe4f67514cc8a3385771f80ce8244cf3cdcbfe2c93e9f - Sigstore transparency entry: 2064028320
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 856.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0192f3be475a1cfa9f7d490bb49dfbeccd3dbee38d31e91c5c943acb6ced3e6e
|
|
| MD5 |
4aefb49568d6138a306dbb8862c09669
|
|
| BLAKE2b-256 |
5ae5529dfb423ee7ec1dafd114eced6ace22b63d6a15db817d176374e034232c
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
0192f3be475a1cfa9f7d490bb49dfbeccd3dbee38d31e91c5c943acb6ced3e6e - Sigstore transparency entry: 2064028250
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 834.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de8655d4880072a84a689dbda6dd2effe99a07227653181a1ad09bfed7d6ca80
|
|
| MD5 |
056147bf37ba75a758811c4ac1d5a4e6
|
|
| BLAKE2b-256 |
a656401f22373b2047bc881f78d613c2cc02be3ed8e1ff9701067f2a93fa7758
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
de8655d4880072a84a689dbda6dd2effe99a07227653181a1ad09bfed7d6ca80 - Sigstore transparency entry: 2064028595
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 862.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2818abaaf643896f8644fb2a8e7f2aaa4f1c3a6bbbc5435e3efdb93a9316bee
|
|
| MD5 |
fc1f4394fd50495aa22583eaceb49664
|
|
| BLAKE2b-256 |
6a802872eae4184a361546ebf239303c2eb8fffe10e5a91c95a1c193295103c1
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c2818abaaf643896f8644fb2a8e7f2aaa4f1c3a6bbbc5435e3efdb93a9316bee - Sigstore transparency entry: 2064028300
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 849.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
106d9790014893af6eddfa6eda98d8505721ee8aa71fd93d23cee76f4744987f
|
|
| MD5 |
b1abb2fe57828624207bec3e3c72cda9
|
|
| BLAKE2b-256 |
1063cd2095cffc2548c399a4522301d0ce7778eb45c7429808a3191a50127326
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
106d9790014893af6eddfa6eda98d8505721ee8aa71fd93d23cee76f4744987f - Sigstore transparency entry: 2064028156
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 351.1 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b4015b19b958c5c8b94c715b0a087da43319efce38908fff13b148f55116cbf
|
|
| MD5 |
f11daf3f98a261b60b7acee1151b53fc
|
|
| BLAKE2b-256 |
ddde875264fd4b59e17c519b83b6c662cb261be22c1b35c4617c45b7216b2103
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
1b4015b19b958c5c8b94c715b0a087da43319efce38908fff13b148f55116cbf - Sigstore transparency entry: 2064028615
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 352.2 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57c37c783036903caf0cfa870a4d114048f1efda2fc848424d1e51859883845e
|
|
| MD5 |
ab07ac748d725dbc7993d5e6ed9d139f
|
|
| BLAKE2b-256 |
fc48b062e1ad7873bc82db2145f3124a5d72e20d3d949164c792b93a849e120c
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
57c37c783036903caf0cfa870a4d114048f1efda2fc848424d1e51859883845e - Sigstore transparency entry: 2064028427
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 338.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ada7b21eb0536f920d1fcaa3ec0bee0141f4550bea25d9c5395ead9a42befa47
|
|
| MD5 |
bb057675b2d391e79bc792fb4f413179
|
|
| BLAKE2b-256 |
c533d744586c16a38212cd795a3f723a6d713d4cc988f8764a37fe0e86311b4a
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp312-cp312-win_amd64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp312-cp312-win_amd64.whl -
Subject digest:
ada7b21eb0536f920d1fcaa3ec0bee0141f4550bea25d9c5395ead9a42befa47 - Sigstore transparency entry: 2064028262
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp312-cp312-win32.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp312-cp312-win32.whl
- Upload date:
- Size: 325.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
498b0c687c5a92743821d37d0fa35727886a391260b834d10856366f55c1d797
|
|
| MD5 |
415c161c71dcd83b0c8df882b221a602
|
|
| BLAKE2b-256 |
2fc0411f0f09a1538f197625d3bc97538850876daccbbb43483488174e8e75f0
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp312-cp312-win32.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp312-cp312-win32.whl -
Subject digest:
498b0c687c5a92743821d37d0fa35727886a391260b834d10856366f55c1d797 - Sigstore transparency entry: 2064028127
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 862.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82d9080d365c47a6cf8edb82145c47af47131983bc4154dc121418e3c922f661
|
|
| MD5 |
debbbf227ffae4b7e7796d0f82090df2
|
|
| BLAKE2b-256 |
109b35ec039613fc43a34886f40b1de5bd1685dc4cc7b19d6476dec35fe80004
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
82d9080d365c47a6cf8edb82145c47af47131983bc4154dc121418e3c922f661 - Sigstore transparency entry: 2064028275
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 841.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e08db326311c941285c6034dba50432b4ac425aea98a5cd2e26f7a6c9521a38
|
|
| MD5 |
af5f9944661deb418fdddb25f0a59a1a
|
|
| BLAKE2b-256 |
121b4a37dd8c2ae7f9023aff5ea93e5716ba72cb5886f2cb6c075d4ee138c2b6
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
0e08db326311c941285c6034dba50432b4ac425aea98a5cd2e26f7a6c9521a38 - Sigstore transparency entry: 2064028214
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 866.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1038dd7755b47a6747180a35f36dfc4ab09688c094ee64ff5a0605b8ec8bd498
|
|
| MD5 |
c3c6c3dfdda669a798cdf4efc8e20e49
|
|
| BLAKE2b-256 |
e656c0043eb6138cbca60eeb12f4fc6ea42198ad6914979b0db1aa34e0feac6c
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
1038dd7755b47a6747180a35f36dfc4ab09688c094ee64ff5a0605b8ec8bd498 - Sigstore transparency entry: 2064028459
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 852.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d04e15ec2a9e0c1e80cbb8433a9a40380e803bf21a62d0a11a34fa4424db35d8
|
|
| MD5 |
9da7e945846cee14af867319a253cc0c
|
|
| BLAKE2b-256 |
5d70020d96823452ecbec5700087ab24e14e89e486ea217d99687a42a3856b1f
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
d04e15ec2a9e0c1e80cbb8433a9a40380e803bf21a62d0a11a34fa4424db35d8 - Sigstore transparency entry: 2064028082
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 351.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c5eaa5fc83a45faf7e1415501ad38f56341dd410f4e0f115390894b412ffa57
|
|
| MD5 |
7687d9a2c0a156a825959fe50d03d7e0
|
|
| BLAKE2b-256 |
79c1527bc973a246fd34d97163091b9f16770911e0595024004e84283e065a9c
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
9c5eaa5fc83a45faf7e1415501ad38f56341dd410f4e0f115390894b412ffa57 - Sigstore transparency entry: 2064028559
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 352.9 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7518bf6064be3ccdb5b55352096c74b05ba1851c3b7f96504269817fd890c340
|
|
| MD5 |
b6e9841b961e1423ed627d4ecea1e293
|
|
| BLAKE2b-256 |
5e82de3afff1691297843a442edd6aacc112bf4e41acf36e7b6dba181f09e679
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
7518bf6064be3ccdb5b55352096c74b05ba1851c3b7f96504269817fd890c340 - Sigstore transparency entry: 2064028536
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 336.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8574f84e70fa6a0383af81b1b2cfbfa955fe6dc0da48da6a105280f4a675f092
|
|
| MD5 |
6794a5207aa102749ff002a65825a8bc
|
|
| BLAKE2b-256 |
5cf770967c6761778ff37ef46eb885dc7d62feb6377a9cfc67a44dcaa7c2f0ca
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp311-cp311-win_amd64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp311-cp311-win_amd64.whl -
Subject digest:
8574f84e70fa6a0383af81b1b2cfbfa955fe6dc0da48da6a105280f4a675f092 - Sigstore transparency entry: 2064028477
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp311-cp311-win32.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp311-cp311-win32.whl
- Upload date:
- Size: 325.1 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
473ca033787d2a50e00c9fe3cd0eb4d14e4295c869271867aa20dd1d24d34f9a
|
|
| MD5 |
32ebe4e5f7e7bd617b53964aa10f23d9
|
|
| BLAKE2b-256 |
76d5bfba23ce7c12a8b9ce68cd3beb29c9f315ffe451811eaaf173b16816e3b7
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp311-cp311-win32.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp311-cp311-win32.whl -
Subject digest:
473ca033787d2a50e00c9fe3cd0eb4d14e4295c869271867aa20dd1d24d34f9a - Sigstore transparency entry: 2064028227
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 860.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0478bd3fb644e65e5fea5fe2dc9ecde8cfa821ce6a0950242bd2cac9c8fea8c
|
|
| MD5 |
07e9ba00ae29fdd859d955499ff8208d
|
|
| BLAKE2b-256 |
8abaa590490e3ebb7fa827e2c3f21d0bc309b4a9748ac3335e4a173baf59a399
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
f0478bd3fb644e65e5fea5fe2dc9ecde8cfa821ce6a0950242bd2cac9c8fea8c - Sigstore transparency entry: 2064028443
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 845.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4a2bb71311366d97382dab4c92e9884dedadb36301010d447632d511a40a4fa
|
|
| MD5 |
c3fc4f27235b9b54a5e4e84e23176256
|
|
| BLAKE2b-256 |
25128c28fdc8dacad345de05c6b92c21cdd710cac0687d5f002310f01472dce5
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
f4a2bb71311366d97382dab4c92e9884dedadb36301010d447632d511a40a4fa - Sigstore transparency entry: 2064028174
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 858.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fba9715b20fc21fcd6c5609b547251f0b01b36c58bda5cbb16507fba9f054e8
|
|
| MD5 |
e8e469cf7c64ba8eeb87ceab4846a58e
|
|
| BLAKE2b-256 |
465a56cc3c195a5bccb5599fcc866e0d9449f5043291f16ac3ec669c22b817d6
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
1fba9715b20fc21fcd6c5609b547251f0b01b36c58bda5cbb16507fba9f054e8 - Sigstore transparency entry: 2064028356
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 853.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4530edb930e1b61e000fcf448338f04fed845dab094230af02adcd983d2d2be
|
|
| MD5 |
82acb0ed8c80dc76e287f2a443dc2102
|
|
| BLAKE2b-256 |
692c612a047314c5495c0e38295c6744334c5b1d52ff6549ebad600643f9521a
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
a4530edb930e1b61e000fcf448338f04fed845dab094230af02adcd983d2d2be - Sigstore transparency entry: 2064028584
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 350.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f6b516842d97aa1b9a6271032e5fca7b09359de575782398ff17588d1b729f7
|
|
| MD5 |
56f3b8775728a4956617e94881f9ddf2
|
|
| BLAKE2b-256 |
0e567df899b11362121fd98bfe05f18bb090fda882b7a8a8fd0103523254444f
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
8f6b516842d97aa1b9a6271032e5fca7b09359de575782398ff17588d1b729f7 - Sigstore transparency entry: 2064028107
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 351.3 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
511bb99972320ee21e8de45c19498461f774daab8eaeed99aa0239f3cff92bd5
|
|
| MD5 |
1e9e3697fbed19455d409a770f999114
|
|
| BLAKE2b-256 |
03bf77d75cd56d6e367c51d08c039972e34cfc104019a2bf444d93c7aba264de
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
511bb99972320ee21e8de45c19498461f774daab8eaeed99aa0239f3cff92bd5 - Sigstore transparency entry: 2064028065
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 336.5 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34b55a2c4f2664e1d9e21ffdc544fa607e76df82a53614eae76858226372173d
|
|
| MD5 |
a5e5909eb3fe110ff8e86a4cdf31f790
|
|
| BLAKE2b-256 |
e3eb662a1d1b0428b0f00044c82fcfe3a4304cd7ec24f03c393a6ab5c71679c9
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp310-cp310-win_amd64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp310-cp310-win_amd64.whl -
Subject digest:
34b55a2c4f2664e1d9e21ffdc544fa607e76df82a53614eae76858226372173d - Sigstore transparency entry: 2064028346
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp310-cp310-win32.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp310-cp310-win32.whl
- Upload date:
- Size: 325.6 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
144f9d248dd60d3def0381e0140b6de48b5cb002351a7247df9c3748645ade97
|
|
| MD5 |
364e4340b926333e40b4f09b7adf27ba
|
|
| BLAKE2b-256 |
1a1fc3339c0392167b9fd78c8f3741a0906947a81e7005fb9cfc11d092ad14c3
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp310-cp310-win32.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp310-cp310-win32.whl -
Subject digest:
144f9d248dd60d3def0381e0140b6de48b5cb002351a7247df9c3748645ade97 - Sigstore transparency entry: 2064028416
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 830.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b452faafd28843ad75429e150b844365841b587bb2234d8305828aae700cdee
|
|
| MD5 |
55955b5c0880ff08ee73534ad701c9cf
|
|
| BLAKE2b-256 |
cbfbe779bc38a7f6f1dc35c4b812886dd8bc296b8394af242195c405f74f28a5
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
6b452faafd28843ad75429e150b844365841b587bb2234d8305828aae700cdee - Sigstore transparency entry: 2064028495
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 816.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd5426f35c90a21f5d4cc39d2c7a8545d06f511eaea3d617fac3831169aaa5e0
|
|
| MD5 |
e46724bdac3b9cf8e6cfaa16a93bfad0
|
|
| BLAKE2b-256 |
311b1b6bc08f3066d2decef0d2aa83c0eea202bd332ad010f275838801a90032
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
fd5426f35c90a21f5d4cc39d2c7a8545d06f511eaea3d617fac3831169aaa5e0 - Sigstore transparency entry: 2064028518
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 830.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
280794b6095a9274ec59cf29f932a9ebd55b6948f0bff917097dce764457857f
|
|
| MD5 |
49c86254ee10816ed569b0cae9ba78c8
|
|
| BLAKE2b-256 |
48a6560451beef6a640db47ed1b98810fc11f73b73df42f793a66c8a723e58bf
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
280794b6095a9274ec59cf29f932a9ebd55b6948f0bff917097dce764457857f - Sigstore transparency entry: 2064028045
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 825.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ea8c3409215d8739c61acfff0e31a52aaeee93a9b2b32c06552daf51ba13df4
|
|
| MD5 |
888e417136bdc0f6107c29fcf706ee58
|
|
| BLAKE2b-256 |
5a8e0e6216b8166724587cf3a672819c1b551cac860a6d39866e3d7e05f383c4
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
3ea8c3409215d8739c61acfff0e31a52aaeee93a9b2b32c06552daf51ba13df4 - Sigstore transparency entry: 2064028377
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 350.9 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0e34bce54e765476dee258b145677d2ce4f867836aef2d0aba879d2df6de576
|
|
| MD5 |
f23fb6942d53942783bc3654e353fe6e
|
|
| BLAKE2b-256 |
f8ae205f9246c12489ba39d441aba1d63f8352ac6dacbc7a4c5076a969d401da
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
f0e34bce54e765476dee258b145677d2ce4f867836aef2d0aba879d2df6de576 - Sigstore transparency entry: 2064028195
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type:
File details
Details for the file sigmaker-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: sigmaker-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 351.6 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5526f6b73ddf1ebc10e7e0ad048957f4542dc875781044439a362ecddde109e2
|
|
| MD5 |
72330e663c26f3d8150aa0c31dc22742
|
|
| BLAKE2b-256 |
42f3b2527eccf082d8fdccbbea3761e0cb794a1b10f252012c6a7c772338782b
|
Provenance
The following attestation bundles were made for sigmaker-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
deploy.yml on mahmoudimus/ida-sigmaker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigmaker-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
5526f6b73ddf1ebc10e7e0ad048957f4542dc875781044439a362ecddde109e2 - Sigstore transparency entry: 2064028331
- Sigstore integration time:
-
Permalink:
mahmoudimus/ida-sigmaker@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mahmoudimus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@bafc12ebea71ae29b9f8e97826a48874d2c38f2d -
Trigger Event:
workflow_run
-
Statement type: