Skip to main content

hashcodecs

CI Docs PyPI crates.io Python Codecov License Total Downloads Monthly Downloads

CPython 3.12 standard Base64 encoding and decoding benchmark

SIMD-accelerated Base64, MurmurHash3, and XXH3 for Python and Rust.

Move byte-heavy work into Rust without changing your Python inputs. hashcodecs accepts bytes, bytearray, and memoryview, selects the highest-priority supported SIMD backend, and exposes batch and reusable-buffer APIs.

Features

  • Base64 encode and decode with standard, URL-safe, padded, unpadded, wrapped, and canonical modes.
  • MurmurHash3 x86-32, x86-128, and x64-128 with one-shot and incremental APIs.
  • Bit-for-bit compatible XXH3-64 and XXH3-128 with allocating and allocation-free native batch APIs.
  • Caller-managed *_into outputs for allocation-sensitive workloads.
  • Runtime dispatch across AVX-512, AVX2, SSE4.1, SSSE3, NEON, and scalar implementations where applicable.
  • Direct CPython buffer handling for bytes, bytearray, and memoryview inputs.
  • Install wheels for CPython 3.10 through 3.15 and free-threaded CPython 3.14t and 3.15t on Linux, macOS, and Windows.

Installation

pip3 install hashcodecs

Python

The Base64 module follows familiar Python conventions while adding explicit padding, canonical validation, batch, and reusable-buffer operations.

import hashcodecs.base64 as base64
from hashcodecs import murmur3_32, xxh3_64, xxh3_128_batch

assert base64.b64encode(b'hello') == b'aGVsbG8='
assert base64.b64decode(b'aGVsbG8=') == b'hello'
assert base64.urlsafe_b64encode(b'hello', padded=False) == b'aGVsbG8'

assert murmur3_32(b'hello') == 0x248BFA47
assert xxh3_64(b'') == 0x2D06800538D394C2
assert xxh3_128_batch([b'hello', b'world']) == [
    0xB5E9C1AD071B3E7FC779CFAA5E523818,
    0xFA0D38A9B38280D0891E4985BDB2583E,
]

Reusable outputs

*_into functions write into caller-managed bytearray storage and return the number of bytes written. XXH3 batch outputs are packed little-endian digests.

import hashcodecs.base64 as base64
from hashcodecs import xxh3_64_batch_into

payload = b'hello'
encoded = bytearray(4 * ((len(payload) + 2) // 3))
encoded_len = base64.b64encode_into(payload, encoded)
assert encoded[:encoded_len] == b'aGVsbG8='

hashes = bytearray(2 * 8)
written = xxh3_64_batch_into([b'hello', b'world'], hashes, seed=42)
assert written == 16

Incremental hashing

from hashcodecs import murmur3_x64_128

hasher = murmur3_x64_128(seed=42)
hasher.update(b'hello')
snapshot = hasher.copy()
hasher.update(b' world')

assert snapshot.hexdigest() == snapshot.digest().hex()
assert hasher.digest() != snapshot.digest()

Rust

The Rust API exposes the same core algorithms without the Python binding layer.

cargo add hashcodecs
let encoded = hashcodecs::base64::b64encode(b"hello");
assert_eq!(encoded, "aGVsbG8=");

let mut output = [0_u8; 8];
let written = hashcodecs::base64::b64encode_into(b"hello", &mut output).unwrap();
assert_eq!(&output[..written], b"aGVsbG8=");

assert_eq!(
    hashcodecs::murmur3::murmur3_x86_32(b"hello", 0),
    0x248b_fa47
);
assert_eq!(
    hashcodecs::xxhash::xxh3_64(b"", 0),
    0x2d06_8005_38d3_94c2
);

let inputs: &[&[u8]] = &[b"hello", b"world"];
let mut hashes = [0_u64; 2];
let mut index = 0;
hashcodecs::xxhash::xxh3_64_batch_for_each(inputs, 0, |hash| {
    hashes[index] = hash;
    index += 1;
});
assert_eq!(index, inputs.len());

Architecture

The Rust core owns algorithm behavior and SIMD dispatch. The CPython layer handles argument parsing, buffers, reusable outputs, and GIL decisions. Root-level Python modules provide typed exports without per-call wrappers.

Each Rust algorithm exposes a small public module. Base64 groups internals by encode and decode operation and places ISA kernels such as encode/avx2.rs and decode/ssse3.rs under their operation. MurmurHash3 groups code by canonical variant. XXH3 uses processing-stage modules. Long-input ISA kernels are under xxhash/long_inputs/.

See docs/ARCHITECTURE.md for the module layout, dispatch model, algorithm data flows, CPython boundary, and safety invariants.

Benchmarks

Run the suite on Windows 10 x64 with an Intel Core Ultra 7 265K. Pin one logical CPU and run each case in one thread. Collect 50 Rust samples and 15 Python samples. Higher throughput wins.

Base64: Rust

Rust Base64 throughput

MurmurHash3: Rust

Rust MurmurHash3 throughput

XXH3: Rust

Link hashcodecs with xxHash 0.8.3 through xxhash-c-sys. Build the C baseline with AVX2. Batch cases pass 32 equal-size inputs and include result-vector allocation.

Rust XXH3 throughput

Base64: Python

Pass bytes to Rust without an input copy. Python decoding uses validate=True.

Python Base64 throughput

MurmurHash3: Python

Python MurmurHash3 throughput

XXH3: Python

Pass 32 equal-size inputs to each batch case. Compare one native hashcodecs call with a loop over the upstream xxhash extension.

Python XXH3 throughput

Read the focused cases, commands, and values in BENCHMARK.md. Read raw chart values in docs/benchmarks/results.csv.

Reproduce

Comparison crates and Python packages are development-only dependencies and are not included in consumer builds.

cargo bench --manifest-path benches/Cargo.toml --bench base64
cargo bench --manifest-path benches/Cargo.toml --bench murmur3
cargo bench --manifest-path benches/Cargo.toml --bench xxhash
cargo bench --manifest-path benches/Cargo.toml --bench crossover

uv sync --group benchmark --no-install-project
uv run --no-project --with . python benchmarks/python_base64.py
uv run --no-project --with . python benchmarks/python_base64_batch.py
uv run --no-project --with . python benchmarks/python_calls.py
uv run --no-project --with . python benchmarks/python_murmur3.py
uv run --no-project --with . python benchmarks/python_xxhash.py

The Python benchmarks expose focused modes such as --into, --lenient, --bytearray-input, --memoryview-input, --sliced-memoryview-input, --buffer-inputs, --incremental, --large, and --hashcodecs-only. All scripts also accept --samples and --minimum-sample-seconds; use --help on a benchmark script for its supported modes and defaults.

For the same-ISA Windows XXH3 comparison shown above, rebuild the C baseline with:

$env:CFLAGS='/O2 /arch:AVX2'
cargo clean -p xxhash-c-sys
cargo bench --manifest-path benches/Cargo.toml --bench xxhash

Performance snapshot

In the full 2026-09-02 hashcodecs-only run on the benchmark host, hashcodecs.xxh3_64 processes a 1 MiB input at 90.07 GiB/s. With 256 B items in batches of 64, the Base64 batch API reaches 11.84 GiB/s for encode and 6.23 GiB/s for decode. The run pins one logical CPU and uses 15 samples with a 0.2-second minimum per sample. Read the benchmark details and raw comparison results.

Development

Build the Python wheel and source distribution:

uv build

Run the primary local checks:

cargo fmt --check
cargo clippy --all-targets --features python -- -D warnings
cargo test --features python
uv run --frozen --no-sync ruff check . --no-cache
uv run --frozen --no-sync ruff format --check .
uv run --frozen --no-sync pytest tests --cov=hashcodecs --cov-branch --cov-fail-under=100

Optimized paths are also checked with differential fuzzing, Kani, strict-provenance Miri, AddressSanitizer, and MemorySanitizer in CI.

Compatibility

Version 1.x keeps the documented Python API stable under the compatibility policy. Release wheels target CPython 3.10 through 3.15 on manylinux x86-64, macOS 11+ ARM64, and Windows x86-64. CPython 3.14t and 3.15t receive free-threaded wheels on the same platforms.

The Rust crate and Python package share one release version. The documented Python API follows the compatibility policy below. See Security Policy for vulnerability reporting.

References

The Base64 SIMD implementation follows the approach described in Faster Base64 Encoding and Decoding using AVX2 Instructions, extended with runtime-selected AVX-512 VBMI and AArch64 NEON backends.

Citation

If you use hashcodecs, cite CITATION.cff.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hashcodecs-1.3.0.tar.gz (188.4 kB view details)

Uploaded Source

Built Distributions

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

hashcodecs-1.3.0-cp315-cp315t-win_amd64.whl (385.0 kB view details)

Uploaded CPython 3.15tWindows x86-64

hashcodecs-1.3.0-cp315-cp315t-manylinux_2_28_x86_64.whl (516.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

hashcodecs-1.3.0-cp315-cp315t-macosx_11_0_arm64.whl (407.9 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

hashcodecs-1.3.0-cp315-cp315-win_amd64.whl (378.2 kB view details)

Uploaded CPython 3.15Windows x86-64

hashcodecs-1.3.0-cp315-cp315-manylinux_2_28_x86_64.whl (507.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

hashcodecs-1.3.0-cp315-cp315-macosx_11_0_arm64.whl (405.3 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

hashcodecs-1.3.0-cp314-cp314t-win_amd64.whl (385.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

hashcodecs-1.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

hashcodecs-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl (408.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hashcodecs-1.3.0-cp314-cp314-win_amd64.whl (378.4 kB view details)

Uploaded CPython 3.14Windows x86-64

hashcodecs-1.3.0-cp314-cp314-manylinux_2_28_x86_64.whl (507.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

hashcodecs-1.3.0-cp314-cp314-macosx_11_0_arm64.whl (405.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hashcodecs-1.3.0-cp313-cp313-win_amd64.whl (363.5 kB view details)

Uploaded CPython 3.13Windows x86-64

hashcodecs-1.3.0-cp313-cp313-manylinux_2_28_x86_64.whl (505.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

hashcodecs-1.3.0-cp313-cp313-macosx_11_0_arm64.whl (403.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hashcodecs-1.3.0-cp312-cp312-win_amd64.whl (363.1 kB view details)

Uploaded CPython 3.12Windows x86-64

hashcodecs-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl (505.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

hashcodecs-1.3.0-cp312-cp312-macosx_11_0_arm64.whl (403.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hashcodecs-1.3.0-cp311-cp311-win_amd64.whl (365.5 kB view details)

Uploaded CPython 3.11Windows x86-64

hashcodecs-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (507.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

hashcodecs-1.3.0-cp311-cp311-macosx_11_0_arm64.whl (408.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hashcodecs-1.3.0-cp310-cp310-win_amd64.whl (365.8 kB view details)

Uploaded CPython 3.10Windows x86-64

hashcodecs-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl (507.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

hashcodecs-1.3.0-cp310-cp310-macosx_11_0_arm64.whl (408.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file hashcodecs-1.3.0.tar.gz.

File metadata

  • Download URL: hashcodecs-1.3.0.tar.gz
  • Upload date:
  • Size: 188.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0.tar.gz
Algorithm Hash digest
SHA256 578280e445fb33faee637ae5df32047ed650371544c9f691d1a15c29ae2b75b4
MD5 8373b2c040223615994d4f7b41f1a286
BLAKE2b-256 4329418d5895f2dbad63bdad10d840d81bd1448c43b047ef5371dca88a99e61f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0.tar.gz:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 385.0 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 4d31b06f70aca9eb0b98a4346ece59438124e412f95234a33db3942fc3320a00
MD5 10ba444b856d24d1ab8e0f6c3878739c
BLAKE2b-256 e944e32db5087852f63961f9d6b44daab55cdc8f942b751776c86c74fe9ce3f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 516.0 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7507608e5491ed6aa5601977c674be7115b5e081793facc73c948e335d07e6f
MD5 a00eb3cbfb9c901aaca76647e5f73dad
BLAKE2b-256 588111bf027fe991c7437acc0f4c36dfceadb3814fae4ad4d261d50536760504

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp315-cp315t-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 407.9 kB
  • Tags: CPython 3.15t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df399179baec8751d8612ff96a31506a38a3d1fded28d3ceee3588a0cfe8aa6d
MD5 3011538ba409a5cdbf715d984d019288
BLAKE2b-256 5a9ef0b269fdd428ae4be449adfa586f0fe144bc7fd4b93e2dbb06e08e970780

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 378.2 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 bf2348b0265bff63aaab741609098cb0abaca65a8f64fa131eb6184f1af9420d
MD5 601d34f330bd020bd60ce6e10f71c777
BLAKE2b-256 3a842bc3ebb9e3a94b4cc4014952738ed1319733255dfe6eed9ebd29f513a55a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp315-cp315-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 507.0 kB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2713fda240d1fadd2da13a5043091d38caf0f985f03f536086e2a66f931ffc1f
MD5 1d37923d23f00777368c743844944818
BLAKE2b-256 82b8bee35b558eaff5e95cbf3899b19703e2e11fd379ea42667a828d24c8e0b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 405.3 kB
  • Tags: CPython 3.15, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43d73204752b60a4167a64bb3b9f65a5a3c2e166be5a9b325d00c30dab0fab98
MD5 44e1d86b3f15a2977b4a165f8c229ca2
BLAKE2b-256 cdb14605c2dc66a6df50e5c8e29efcf2e2d5af8be0acc88099ae32b0e2eb42de

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 385.0 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 35d4931326c1a46a4b17e28c8ffe8e61679e4240385c5aac732b74bd56d8b018
MD5 bc9b077cb9ff82749ab3c90ac2fd4bc1
BLAKE2b-256 1fbde8fdc74de72d27cdbc549961a2673a2877c0c5753c6ae4771e4d4f912a74

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 515.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fac37cac60f98eb89b7a16d69d56af5f862698221005eda4a0796a44466df1b1
MD5 28d8870f65820d0fb7973998358fe8cc
BLAKE2b-256 99b764781c0fc4f56904639a0dfa007e1896ebef62ae338b43bbcf12d4a664e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 408.0 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dc9327c47cee5f04d3f19dcd0c0133584093b3fc87fc20896e77439b61c3097
MD5 c1fb9c2f4e16c9a7f59c8f296ad38a76
BLAKE2b-256 2ba823f11acd1abf938976eeeacdf9c17a55171e132c3b46d7fb700093bc7cec

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 378.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 086fd40fbe9be9e7ca86a697a060761fc12add6186c11c4166c004e88d15f75e
MD5 c955904ac9ce281da3bc470dc3030585
BLAKE2b-256 fca6588034fcc5a04f8d827186aae926edacb5f6e0bcc067a1af47d2338a3ab3

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 507.0 kB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 729c7adb4cec90ae7e9f5246ea7861c2024b3d422a4af86080b3b1eab4ee9cb8
MD5 5e8bf0ae87a125710c06f4a1131b3901
BLAKE2b-256 1f696f05323862ce9e80791faf0ef682a3f5e602a74836426812c634b76a141d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 405.2 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 704abbd8554ec0d9f218a891c473344d273dc34068fbbccc1a1833384e08e558
MD5 3a1b139c8eebbf45ce67c7bfe1b895b4
BLAKE2b-256 d02fdf14d9b3e35f795d8ad25195b19fc91ff0dadf5f9816a100d328a82baaf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 363.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a3d30e3644280e672331b854eb4d79509109e59ca02da07f6d51892e88a1a7dd
MD5 d331f9edf7c4aa2c2c82d17641b2be1f
BLAKE2b-256 8da6722001f6bf7a3d7412ff9957d79f7489d971c8afb00f1b84bcf13dfcf4c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 505.6 kB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1469fcd88e404b275d2e48c2ce1835574fc70112c5a64f0ded05e58f3003ce37
MD5 1dbd4a034e10228c278c29fbc7af6790
BLAKE2b-256 8e341e64ebceb6fd8661a4c0c150678370456e70de524f8d0ebd179b0045c4bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 403.8 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae80bdd1a2c7faf9a5bccad30e271915bfb46ea31af62535a27f2481c1ecaaae
MD5 910e5fa6efb90ea558e4777a7477b248
BLAKE2b-256 722c04d742bce1b92232d4b1c392b54a6a5a79dab1a7322a0ad83d0af175edf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 363.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7538da0a3dd49cf4154b2ca16a8e781c0c273f8cbd0ca771969f8b693791f7e8
MD5 89eeac88817576a9c0cf075d2a658345
BLAKE2b-256 c65758aa671cd3b68c7bf60e667267581fda97f73778aa28cfa1017d11e6274f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 505.4 kB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1dae4ed3d6f4bef2eda4e8abd5ca361bf3f6eb515ea702722c932be492cf4b37
MD5 ad1070c4ec492330ad11cb998a1beca1
BLAKE2b-256 64a7ccb2330604fd882550b9bea1ac67dbae4bfd2e9ea3617459558c8566741a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 403.6 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3bb96c95b441dfa567d3bd1fffeec17e06603148a4fb2a7af99043ca118df82
MD5 be26846294ac34ef0265850b134e9939
BLAKE2b-256 a413f09aac665e7cc84a570dc1cfb41a5590c51cd66a2862038f6878b6a460ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 365.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 21d859f8545c54d30a4d849549dadab1d7320c80a91abf1e63b3df39057b42ea
MD5 7c792beaeef1e56c5d0cb64e395b2d26
BLAKE2b-256 fd3d3d573e8fa493d5fa91fba20ce253b45ff75f67b7aafc19fa807c52a822b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 507.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19ad2a505d2bad69654f486fb8d85955e17f3170942ac207f00b4c7e0baca1cb
MD5 42da99c4ed3c402b1f31aab840701d74
BLAKE2b-256 7f80f001728131dcb0bf27d9bd7711780c40d056d9d5ff7f67c05e371234b35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 408.3 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 302df6054c48e941085af1cbab4e3481b3241d921ddcf9119f8a9ba483884abd
MD5 e8c49a7509d4c09484ec74a66cade364
BLAKE2b-256 091f20e999f94cb4de12d03d28097ad8202a397e067bf86df74867ae010472fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 365.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bad0c7f44d91eb5379a086333a0ad96ca1d015a4243406986ad48aeb61c87f36
MD5 5007a5fcfd07f031201aea2e13959b33
BLAKE2b-256 764e98a0c20bafcb8ca45157a3d72b32e0a43ee4b0032df22d51df74c890f5a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 507.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e9993ccde800c839d35ee3a4c1da6524fd3ed6c3411df028072d4411bdff3f2
MD5 ef865645be5c9e03468918b1bb2250f0
BLAKE2b-256 d1c8e4c834ef055083b160ac7510c4bedf977d44ea9041a2a2b1aebb03a7101d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.3.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 408.4 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84aef0a36ed3153e30b60647df7884dd07fc3683953f33ecbb3506184003c2d1
MD5 a394b13ad0e64729eb6d62bd67506b58
BLAKE2b-256 f47df8b718d4bb0237405ed652a4ee3d69fdee4fef95eeef62f52b41f1164cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

Release history Release notifications | RSS feed

1.4.1

25 files

1.4.0

25 files

This release

1.3.0 This release

25 files

1.2.1

25 files

1.2.0

25 files

1.1.0

25 files

1.0.0

25 files

0.6.1

19 files

0.6.0

19 files

0.5.0

4 files

0.4.0

4 files

0.3.0

4 files

0.2.0

4 files

0.1.0

4 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page