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 prepared seeds and 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 seeded_input = vec![7; 1024];
let prepared = hashcodecs::xxhash::PreparedXxh3::new(42);
assert_eq!(
    prepared.hash_64(&seeded_input),
    hashcodecs::xxhash::xxh3_64(&seeded_input, 42)
);

let inputs: &[&[u8]] = &[b"hello", b"world"];
assert_eq!(
    prepared.hash_64_batch(inputs),
    hashcodecs::xxhash::xxh3_64_batch(inputs, 42)
);
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 focused 2026-09-09 hashcodecs-only run on the benchmark host, hashcodecs.xxh3_64 processes a 1 MiB input at 91.27 GiB/s. In the full 2026-09-02 run, the Base64 batch API reaches 11.84 GiB/s for encode and 6.23 GiB/s for decode with 256 B items in batches of 64. Each 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:

just check

just check builds and reinstalls the current wheel before running Python tests. Run just full-check before committing to also check release builds, Rust core coverage, and the extracted source distribution.

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.4.0.tar.gz (180.2 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.4.0-cp315-cp315t-win_amd64.whl (402.4 kB view details)

Uploaded CPython 3.15tWindows x86-64

hashcodecs-1.4.0-cp315-cp315t-manylinux_2_28_x86_64.whl (534.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

hashcodecs-1.4.0-cp315-cp315t-macosx_11_0_arm64.whl (419.4 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

hashcodecs-1.4.0-cp315-cp315-win_amd64.whl (396.0 kB view details)

Uploaded CPython 3.15Windows x86-64

hashcodecs-1.4.0-cp315-cp315-manylinux_2_28_x86_64.whl (527.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

hashcodecs-1.4.0-cp315-cp315-macosx_11_0_arm64.whl (415.8 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

hashcodecs-1.4.0-cp314-cp314t-win_amd64.whl (402.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

hashcodecs-1.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl (533.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

hashcodecs-1.4.0-cp314-cp314t-macosx_11_0_arm64.whl (419.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hashcodecs-1.4.0-cp314-cp314-win_amd64.whl (396.0 kB view details)

Uploaded CPython 3.14Windows x86-64

hashcodecs-1.4.0-cp314-cp314-manylinux_2_28_x86_64.whl (526.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

hashcodecs-1.4.0-cp314-cp314-macosx_11_0_arm64.whl (415.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hashcodecs-1.4.0-cp313-cp313-win_amd64.whl (381.2 kB view details)

Uploaded CPython 3.13Windows x86-64

hashcodecs-1.4.0-cp313-cp313-manylinux_2_28_x86_64.whl (525.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

hashcodecs-1.4.0-cp313-cp313-macosx_11_0_arm64.whl (414.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hashcodecs-1.4.0-cp312-cp312-win_amd64.whl (380.8 kB view details)

Uploaded CPython 3.12Windows x86-64

hashcodecs-1.4.0-cp312-cp312-manylinux_2_28_x86_64.whl (525.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

hashcodecs-1.4.0-cp312-cp312-macosx_11_0_arm64.whl (414.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hashcodecs-1.4.0-cp311-cp311-win_amd64.whl (383.4 kB view details)

Uploaded CPython 3.11Windows x86-64

hashcodecs-1.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (528.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

hashcodecs-1.4.0-cp311-cp311-macosx_11_0_arm64.whl (419.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hashcodecs-1.4.0-cp310-cp310-win_amd64.whl (383.6 kB view details)

Uploaded CPython 3.10Windows x86-64

hashcodecs-1.4.0-cp310-cp310-manylinux_2_28_x86_64.whl (528.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

hashcodecs-1.4.0-cp310-cp310-macosx_11_0_arm64.whl (420.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: hashcodecs-1.4.0.tar.gz
  • Upload date:
  • Size: 180.2 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.4.0.tar.gz
Algorithm Hash digest
SHA256 217fc0678bfa371aba4ccea95539eb4f9c6f94c9819158dc0876de110648a241
MD5 45083c79d3b10eb1c56b95a939afe2ff
BLAKE2b-256 cde5ed9ff33b1f33fbcfd81eb64c10d91538f38242be8066deb92c40ea69ff6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 402.4 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.4.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 1493c038f3998165a7f01d928ef7812c03d278f89138ffbc137b2a96c1662d1b
MD5 41b92db79e7e07a163e8ba01fcd93052
BLAKE2b-256 47a1e4ca3b58d80b8a92266c9d8935fd43ce14111fd99be43db56208f0be4781

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 534.1 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.4.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9829223f54b9427824f171b523015f79d80c7422efc0867e2044984cecf4465e
MD5 871f2a562111d46b712eee34c5f03e18
BLAKE2b-256 b4110ad77470c398fb164066adbe34a0fc4bc791f8d22af5a581744d667bd3fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 419.4 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.4.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fc3b838c859311e78577720c30541fc825cd3a5144594982fb00423a21773a0
MD5 7b0132defa2db452aa8315fb22289dd9
BLAKE2b-256 3adcdf8df22a09f91ede88658d3b41d8ee88b30cb051ea6a912278c0049a6347

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 396.0 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.4.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 212e1ae369d199ff421c5b13f67c7432be5d48c48502e96a6befa7f44f069c6d
MD5 907a1c19fa128dc1db1b080b6c0e2dee
BLAKE2b-256 07e3678382c5b1a8ac4aada4a2ce228e072aec85a34ec098e31c0bb5aa0d3417

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 527.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.4.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46ec9de12e212ebefb6053a51ee91c03b5c4ea600295df14128a2436b49e6c45
MD5 c9bd38645cfac45efa1a6a2d1cbf360a
BLAKE2b-256 c8df7928803d9de5b738516baaa078f86006c8f95bd93cdae24dd446173eb0c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 415.8 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.4.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ba124e86e7f69ae9acc27972f32117b520e748f7bc2c2e6d56975c5a73d092d
MD5 2204b6fd7f2288b93d314749f6e84af6
BLAKE2b-256 092be04b65e4ee1719761e7c3f9a7d6943cb80ba3cffcdc63315a59ed86ef3d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 402.4 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.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1394a380c4fc946681271adefbbf6ac1eb58d2c2bcef59911e3ac98615601172
MD5 666854781b4e67360164b6084f616dbf
BLAKE2b-256 b8f2deaebccf76893100e271b665089f2d074b2ea91cf03ce45df4a5b8fc89da

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 533.9 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.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ae456b248698a918222f159cf41952bfb20cf0fa43c7f0c1d924d22ca27f66c
MD5 7ba951d3a8d77b554ae9b7cde2ba734b
BLAKE2b-256 6619d83d09f332724ff3dc5fe796b0ddf47d84dfebbd1d62bc3b95b630f7e122

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 419.3 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.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2704e483b9039a1f4107a262afcca0477df6485b98a012c90cba6117e420c822
MD5 705fdc97724227dd40652bc95b9204b7
BLAKE2b-256 c3b01c46bde872fe8f30535360a2b47237e4a67320bf0211c31e945cee2ec64c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 396.0 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.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b6fb08243cab20c113e4f5c00b236a426a8f8751ac21d5095966679b1b684f07
MD5 eb0608f113ce7fcfbb20398ee1c6b160
BLAKE2b-256 0e42079906002d54529c8b5995729f87edd9cc32717bc55bc98e5c010949eb54

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 526.9 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.4.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14a71cf15f72635b55681bad7797fc1c3a5ce1cf9d939823f9eedeffb72c246d
MD5 1651835d587a08cef95ef7bca06c51f9
BLAKE2b-256 951a3f4786d1ce3f8ea8c2b9f7845da8f84f29e75ddb4a34d3528fe4cde10bab

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 415.8 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.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67306a2ebf8c6b4603f4e986d041533808da6c3c3abc6184876a940ff9d0a4d6
MD5 077a686d7882b4a9d10718bc4ff0a25e
BLAKE2b-256 f118986180e05e0770d7a42a4cb1215d03a2c8b3d2dac06839a4a9571dc837ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 381.2 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.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a505dac061a416d0b44ec7d345a222935660a75ceee6e9d10d538d8b035d4f26
MD5 decb7136c8a5aacb8088ec49a4f3d792
BLAKE2b-256 25a070e68a09d46163e24bda0a60017883ef390b8ff6b90dead115c1c2af579a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 525.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.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 30fac5e81c1abcb9337bc54e4fa25880412ec50f206b63629e8d2979b38422fa
MD5 578588d4ec36e553991dde4393d2227a
BLAKE2b-256 0e7b58d35f78e7567af0d5e938c39b6fd5f68313157db83746a2362e92d600ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 414.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.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bc2c477f49e5773dbaa66b6d24e08b81858ca7b1277cd66a658279dea98560d
MD5 ac1c36d8510655bad2107f7f614061fe
BLAKE2b-256 ecdf7a78c1d6c8da60804f7d518188855beab92ecde6e65078b6616ec2e51ad7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 380.8 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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 db6aa03d5a90462d90683f4f3cbedb61653a7e3dfc79389b1f111ac3cbfbe265
MD5 7284d97d32887aaa021406393c69acaa
BLAKE2b-256 fd501d4430bc5e9a2f400b1c7841c148fd17391bd0699379dc1586d3613ee07c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 525.3 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.4.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be7493896ba8eaf27e269cb473aba3d547b7d1fcd4bfa38c3e0929713e6c41e0
MD5 28ab8bc94e75fa6a136912248700b443
BLAKE2b-256 ccd5fbde232e14bc80d655566372dd028ee64678a0d7e8d40d8f8217e1466d1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 414.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.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da6a2df295d2a875dc4990ba286b2e5a5f49bff29a691dbcf797af3b6e61f62f
MD5 72abce7e9ba5edfb72a95f0dff69c056
BLAKE2b-256 f9b530d9534f93b07ce078769097f45aee63c87a714c4ed33dbfb490f81da8b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 383.4 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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6d559e8050a5b37e2df70dbd534e024cba968bd93796726d9ed86e12e4016e33
MD5 2434d0c77606ccabff4bd8632306cd4b
BLAKE2b-256 f50e91899ce4aa412558e0f85d632d3956dab014bce73e4f7f3c5c3a46123cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 528.2 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.4.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68d29fa0eb5c0d801c362fea79ab80b45ebe21d8aeabd587ab55cc99ea319982
MD5 708312aab07b11ead6c0130278d599e9
BLAKE2b-256 6e9008ded06918249ef3744c71b0c07e8b93d34dfdcfe53a879ab4f47f637298

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 419.9 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.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d830950eae07d11c9c12276c7887a19bc858eb9e5d90a6701ad68459aa3c96f
MD5 5af10280bb15e889ac5266c741cbd925
BLAKE2b-256 8cc4cf984a4d1771690bb0c13f2774a5f8610d499362228eed837bdffa17c753

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 383.6 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.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2f1b44d394e7a6086fc28ce18c9e1ed62d12b0e28b89002dd1bf3c9fc3f97ad8
MD5 7fe74097f1d898695e61dbcc63cd3af3
BLAKE2b-256 9ef9e4e12acd8bbe97abb36acd23d9c4208f548c7e9449a4fec666a8f5887378

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 528.5 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.4.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 118be2019239f4f5620b624c2bcca46e66dc7f12f1b0e67f4b7aaded06feba91
MD5 a6e07bd1e6c87f21479c095978deba2e
BLAKE2b-256 1fb8b447ddf992c0fcbe1db81b8b5befd459a8b1de488050592334c95c146b67

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.4.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.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.4.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 420.5 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.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5329467809b692cf02d388952d99fd233c06287ae6b359f12ea0cc108239b9bf
MD5 9331a4e46b1a81d010427470ab3260fb
BLAKE2b-256 c082831775c396813cd4b077396c64135883bfda9964074ab6706391ac3821e7

See more details on using hashes here.

Provenance

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

This release

1.4.0 This release

25 files

1.3.0

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