Skip to main content

Python bindings for the Rust blake3 crate

Project description

blake3-py Actions Status PyPI version

Python bindings for the official Rust implementation of BLAKE3, based on PyO3. These bindings expose all the features of BLAKE3, including extendable output, keying, and multithreading. The basic API matches that of Python's standard hashlib module.

Examples

from blake3 import blake3

# Hash some input all at once. The input can be bytes, a bytearray, or a memoryview.
hash1 = blake3(b"foobarbaz").digest()

# Hash the same input incrementally.
hasher = blake3()
hasher.update(b"foo")
hasher.update(b"bar")
hasher.update(b"baz")
hash2 = hasher.digest()
assert hash1 == hash2

# Hash the same input fluently.
assert hash1 == blake3(b"foo").update(b"bar").update(b"baz").digest()

# Hexadecimal output.
print("The hash of 'hello world' is", blake3(b"hello world").hexdigest())

# Use the keyed hashing mode, which takes a 32-byte key.
import secrets
random_key = secrets.token_bytes(32)
message = b"a message to authenticate"
mac = blake3(message, key=random_key).digest()

# Use the key derivation mode, which takes a context string. Context strings
# should be hardcoded, globally unique, and application-specific.
context = "blake3-py 2020-03-04 11:13:10 example context"
key_material = b"usually at least 32 random bytes, not a password"
derived_key = blake3(key_material, derive_key_context=context).digest()

# Extendable output. The default digest size is 32 bytes.
extended = blake3(b"foo").digest(length=100)
assert extended[:32] == blake3(b"foo").digest()
assert extended[75:100] == blake3(b"foo").digest(length=25, seek=75)

# Hash a large input using multiple threads. Note that this can be slower for
# inputs shorter than ~1 MB, and it's a good idea to benchmark it for your use
# case on your platform.
large_input = bytearray(1_000_000)
hash_single = blake3(large_input).digest()
hash_two = blake3(large_input, max_threads=2).digest()
hash_many = blake3(large_input, max_threads=blake3.AUTO).digest()
assert hash_single == hash_two == hash_many

# Hash a file with multiple threads using memory mapping. This is what b3sum
# does by default.
file_hasher = blake3(max_threads=blake3.AUTO)
file_hasher.update_mmap("/big/file.txt")
file_hash = file_hasher.digest()

# Copy a hasher that's already accepted some input.
hasher1 = blake3(b"foo")
hasher2 = hasher1.copy()
hasher1.update(b"bar")
hasher2.update(b"baz")
assert hasher1.digest() == blake3(b"foobar").digest()
assert hasher2.digest() == blake3(b"foobaz").digest()

Installation

pip install blake3

As usual with Pip, you might need to use sudo or the --user flag with the command above, depending on how you installed Python on your system.

There are binary wheels available on PyPI for most environments. But if you're building the source distribution, or if a binary wheel isn't available for your environment, you'll need to install the Rust toolchain.

C Bindings

Experimental bindings for the official BLAKE3 C implementation are available in the c_impl directory. These will probably not be published on PyPI, and most applications should prefer the Rust-based bindings. But if you can't depend on the Rust toolchain, and you're on some platform that this project doesn't provide binary wheels for, the C-based bindings might be an alternative.

Project details


Download files

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

Source Distribution

blake3-0.4.1.tar.gz (117.7 kB view details)

Uploaded Source

Built Distributions

blake3-0.4.1-cp312-none-win_amd64.whl (210.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

blake3-0.4.1-cp312-none-win32.whl (226.8 kB view details)

Uploaded CPython 3.12 Windows x86

blake3-0.4.1-cp312-cp312-musllinux_1_1_x86_64.whl (542.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

blake3-0.4.1-cp312-cp312-musllinux_1_1_aarch64.whl (534.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

blake3-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

blake3-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (408.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

blake3-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (398.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

blake3-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (428.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

blake3-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

blake3-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

blake3-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (329.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

blake3-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl (343.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

blake3-0.4.1-cp311-none-win_amd64.whl (210.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

blake3-0.4.1-cp311-none-win32.whl (226.9 kB view details)

Uploaded CPython 3.11 Windows x86

blake3-0.4.1-cp311-cp311-musllinux_1_1_x86_64.whl (542.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

blake3-0.4.1-cp311-cp311-musllinux_1_1_aarch64.whl (534.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

blake3-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

blake3-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (423.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

blake3-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (399.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

blake3-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (429.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

blake3-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

blake3-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

blake3-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (329.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

blake3-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl (344.7 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

blake3-0.4.1-cp310-none-win_amd64.whl (210.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

blake3-0.4.1-cp310-none-win32.whl (226.9 kB view details)

Uploaded CPython 3.10 Windows x86

blake3-0.4.1-cp310-cp310-musllinux_1_1_x86_64.whl (542.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

blake3-0.4.1-cp310-cp310-musllinux_1_1_aarch64.whl (534.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

blake3-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

blake3-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (423.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

blake3-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (399.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

blake3-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (429.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

blake3-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

blake3-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

blake3-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (329.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

blake3-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl (344.7 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

blake3-0.4.1-cp39-none-win_amd64.whl (210.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

blake3-0.4.1-cp39-none-win32.whl (227.0 kB view details)

Uploaded CPython 3.9 Windows x86

blake3-0.4.1-cp39-cp39-musllinux_1_1_x86_64.whl (543.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

blake3-0.4.1-cp39-cp39-musllinux_1_1_aarch64.whl (534.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

blake3-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

blake3-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

blake3-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (399.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

blake3-0.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (430.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

blake3-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

blake3-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (359.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

blake3-0.4.1-cp39-cp39-macosx_11_0_arm64.whl (330.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

blake3-0.4.1-cp39-cp39-macosx_10_12_x86_64.whl (345.5 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

blake3-0.4.1-cp38-none-win_amd64.whl (210.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

blake3-0.4.1-cp38-none-win32.whl (227.0 kB view details)

Uploaded CPython 3.8 Windows x86

blake3-0.4.1-cp38-cp38-musllinux_1_1_x86_64.whl (543.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

blake3-0.4.1-cp38-cp38-musllinux_1_1_aarch64.whl (534.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

blake3-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

blake3-0.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (423.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

blake3-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (399.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

blake3-0.4.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (430.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

blake3-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

blake3-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

blake3-0.4.1-cp38-cp38-macosx_11_0_arm64.whl (329.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

blake3-0.4.1-cp38-cp38-macosx_10_12_x86_64.whl (345.0 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

blake3-0.4.1-cp37-none-win_amd64.whl (210.1 kB view details)

Uploaded CPython 3.7 Windows x86-64

blake3-0.4.1-cp37-none-win32.whl (226.5 kB view details)

Uploaded CPython 3.7 Windows x86

blake3-0.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

blake3-0.4.1-cp37-cp37m-macosx_10_12_x86_64.whl (345.3 kB view details)

Uploaded CPython 3.7m macOS 10.12+ x86-64

File details

Details for the file blake3-0.4.1.tar.gz.

File metadata

  • Download URL: blake3-0.4.1.tar.gz
  • Upload date:
  • Size: 117.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1.tar.gz
Algorithm Hash digest
SHA256 0625c8679203d5a1d30f859696a3fd75b2f50587984690adab839ef112f4c043
MD5 1c5980f3063cc69e5dd5d998f5a8c411
BLAKE2b-256 b08d43eafa8a785547c33b611068ffd6d914f5c5f96637d5b453abc556f095a0

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-none-win_amd64.whl.

File metadata

  • Download URL: blake3-0.4.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 210.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 2a08eeb324da701b212f348e91ba5d2708c0a596bd6691207f2504f4f771644c
MD5 47da69107c001eb7fd954ea11e927c6d
BLAKE2b-256 fb673fca4d812b3334fa1c9415fd7f10ceea32b0e9e29797d179af87ed94581c

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-none-win32.whl.

File metadata

  • Download URL: blake3-0.4.1-cp312-none-win32.whl
  • Upload date:
  • Size: 226.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 510fd32d207ef2e28df3597847d5044117d110b0e549b2e467afa30a9f3ab7ee
MD5 fa81c695fe40c515b9d8890a1cd13522
BLAKE2b-256 81d27d5c71b78fbbef88b723d9af1bd647fe756ca0f8880a27f2ad5a7b97af55

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ae98654d5c83171236b444a5291276102a0b88fd927738872b03df404b2efd49
MD5 21f4cb8a2cefdbd4cac4b5025fb260f6
BLAKE2b-256 f4a1e381b0fabc06cd285554d0946ef323854121187ecc2a21857b8799be2b74

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 79b833f49902857c98bfd7dadac28f3bbc2e8c76b24108aa93518ff9eddf3e09
MD5 6fc85b6cfcbf3e11b708763989a4eac6
BLAKE2b-256 44b6e0fa32626466040cb3ebca3dd31db49fce72fa1569fcf7dfeec9e05f9811

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a51f48ec21706a22b4954fc17da72bd177d82d22ee434da0c5dc3aafeef5b8d3
MD5 237af1963dee42c6bcdd075146ab6483
BLAKE2b-256 ecc68f6717fbea55ec9eb21543aa6d8e1bd904d6d2dcc886b555aa3d3f450ba7

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6fafa24b02862605c9995304d13b00d9e727f0352a61daad648c9c4a44063ccc
MD5 bef882bfb3ce4872df60fbddc4907e5c
BLAKE2b-256 ac6ec059b2efd212e5b7d8702cd558d73db624bef24840d4b408f5fea13d576f

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de61bc9d5aee53e31cbb9c7e3c60601125c8c5e7f7805d5230fe3628b1b43137
MD5 d80eb07f2e5bdc2ab6db4c914cc8dc46
BLAKE2b-256 fc0048e65aca05c5a629f31a374b15f8213695783c6180a9fe0ca813d772259f

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc3bbaff1796f7ee5dc138761f8ad26e8f8586f2b4b12f25969c449a7a1a57aa
MD5 73ffaab1b65ac4ba3b6c865ec75e0e44
BLAKE2b-256 7b0262f1a31d2b5f6b1e0864d0eeed6bc664cf9c3e467ecd52bf9b1a4d3f41f5

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ff8ecf2bb68fa642c6b943dcd34872d5e2c12e166dd9d2c295b880427467a49
MD5 b95ac449c100aa68bdd5e65b95ff800f
BLAKE2b-256 302dfa4a1610f597c053f35be6bd3dfff19c295e26c04eaa0d1e44eee67c7cc4

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3c0631f69a5b3851cd89a50728b5ace0d6dbd276c52fc404b648efe08bdd7da
MD5 3a83b7fe067323593f01fd9034e058b9
BLAKE2b-256 ae158bcd0b3f854683f3dc524615d6c9c9b3db6554098f24f674347dd37d02b6

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe31163eb08fc3f82a2325e90cea88f2d7ad0265314a03de716f906b2a43be96
MD5 f901d0c0775215950ef676ed3d67d680
BLAKE2b-256 e08f184105e1a84ac108cfec8702307b588cb123e1a203e8538e8c3e9b0320da

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb98f18bc5e218ff1134acb3b9f0e3588ad5e6f38b7279cce4559c8ae9d780e6
MD5 99b28a1b006d8eaad64d8e9ec94b7c3e
BLAKE2b-256 50f8c5e6c5749aab2d84c177e8d86792aed8adaad023bfd045abfc6f053cdd57

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-none-win_amd64.whl.

File metadata

  • Download URL: blake3-0.4.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 210.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 c6c50122d9484a97a56888f09fcbbd23fdba94c4bf1e6fdeb036b17accae9f0c
MD5 339a7dce73e626373d080bd41a0647e7
BLAKE2b-256 40242b459aa3f1a3c87534701f524cfb6f764a96efc35e1a7188506f303e17b2

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-none-win32.whl.

File metadata

  • Download URL: blake3-0.4.1-cp311-none-win32.whl
  • Upload date:
  • Size: 226.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 931d1d0d4650a400838a7f1bf0d260209d10e9bd1981a6ed033f32361b96ab7b
MD5 aa55483609521afc82212fc7524d5dcf
BLAKE2b-256 2a50fa7e20ac8bb2a07f6286c3703dae7646e708370675a7f0987da58d605af0

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4e6d4d58def551bcdd2c8bfb2bb23ba788f83e7559ad91a3279fe3c50b1fd6fb
MD5 2c9249e6614c389ece2212694193e2f1
BLAKE2b-256 db1f1292db5f7562dc430c7fa03e2a004a3af417bc47c97260e6d01668da1d8d

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bc7664c1b7ec219718339e9636cf0024152ec8b37843b56b93d8eb4f4b223f35
MD5 e8bb24e52654b89805b9b7b204f3dbdd
BLAKE2b-256 8d54234a13f0d81dcc1c5aa89921c15f5f98d6c31162b4195dd321829487098d

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d653623361da8db3406f4a90b39d38016f9f678e22099df0d5f8ab77efb7b4ae
MD5 9986a291daaf01d127b1d8739625763d
BLAKE2b-256 ad9e84fda33f9cd0b978d9e73becf51f3e11e33180e07e5b6bf3d16fbc4021e2

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4de64fdc8b8683eaf3809d9fa99f6cdfa46ac1c981966430df3df25ff258e954
MD5 8855b5cf782dad0ce377d3cf3c763be4
BLAKE2b-256 da442b6565e986393fadc35a1fbed542670fa97c3c84566a5aa29d2e1bcea59c

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97069e7dbd07637c54f5819c9265f48ecf372c5ad0ba7d0305daf1737a663fae
MD5 25f0644f5b9248b76fa7a494b7b3ee45
BLAKE2b-256 07524a24a7b4ad07e793208dcdff4584e755f3b9de9fc8f5ea0094e550096290

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9919f2a1915eb7fba169b4da4adce00a75f2e1cbfff304390aff83c0955f06b0
MD5 b60853419be5569a539277e417217c51
BLAKE2b-256 1994385ab7bcd109add6dd97da3e68880b3f4893d74642164208a7087a602911

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a09538ca58f1ae5b2ee7b6b1ddd3eab9e2a6f5a5da18a3e5a05974729fcd9d1
MD5 234a59a32f8ca1480fd78a528ad7ee09
BLAKE2b-256 10801635fedbfb211ab24875f4add060f7e35311a230d962a7992838897efed2

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b33afccf613ed08497244b19a966a62d7196a0de45a74959f39738d6125bb2be
MD5 6d254252868f17fb9b775422da7c1c29
BLAKE2b-256 6b2d530340e51b0e329dd7cbf2053702f6753e75f7932b3d86f9671ba15c02cb

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9633e0198174eb77196f9f8b18d75449d86e8fa234727c98d685d5404f84eb8e
MD5 fc919deda78720e1c2c9a71967b05cf1
BLAKE2b-256 724c8c8153dfb29e894655c602e08813946e570ec23bf6bd3c69b29560467afe

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3cc656cab955ab6c18b587a8b4faa33930fea089981f76a7c64f33e4a26c1dac
MD5 902cc7f1c2e3b1c61b6f8dc8041c9442
BLAKE2b-256 11fd294d17ff72711d88c5b601c5ce86e20f69a1b3c25b35b777bc27a1b27386

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-none-win_amd64.whl.

File metadata

  • Download URL: blake3-0.4.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 210.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d51b3da140d04cd8b680bf2b3a5dc1f0cbb4f1e62b08e3d6f3b17d75b6285c41
MD5 2c650ce87ce50a9eee73e147ff878c77
BLAKE2b-256 252e605e64664547d9d2b6ec70ef28b534a982044af972f62873dc620208911e

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-none-win32.whl.

File metadata

  • Download URL: blake3-0.4.1-cp310-none-win32.whl
  • Upload date:
  • Size: 226.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e0fc4914750b63bbb15f71b2092a75b24a63fd86f6fbd621a8c133795f3d6371
MD5 6ef58f22ce790123fc178641905e9e95
BLAKE2b-256 9e6efc0c23e757222419d8ba0daac7bbf4a5cc2dc1110edf15ede947babd1247

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95443ff7f4e55318965aeb38ec8d77ebd2bb3e508255cedf579583616a1b3008
MD5 6141c4658d3cb60eb6b656bd39258a85
BLAKE2b-256 cd4d362d69d3d549a3dd1a2b712706f317ec715cefd0acdb9743beb29571e197

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 38f80e7676dee82528a9858c54e5099188bc80a0b91eb5b27584b3cf95bfaef0
MD5 9855e6e872f7f82a28aff361b671de35
BLAKE2b-256 a8a409c2f214cb5b5b535bf0141a6adce8eca21358ea825f5bbc6ca9154fda22

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef534c59ae76faba1c7e1531930dadecaa7817e25aa6e6c825150c04ed243a3d
MD5 4470a7227779303d2e682603d8e3a373
BLAKE2b-256 9ce12a8a076ec81e3c450a07ad5af70b7330a0571a019147547c4180fb88696c

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f1b987f6395414a9dc6918bc448a9862f23aa2feb646c071d72a834f77b83e4
MD5 43566f280b7e0ef1f5f88f3c85a5454b
BLAKE2b-256 842d45a359335d0d5b5170cfbf8051265306c46c12c035a98212b5ee94c9f640

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3eaf77a815653622e383535c696ba66020c6caee2afe87a3c3bb9ac553c5c084
MD5 5537bde23548b32bf80127f209576f0d
BLAKE2b-256 de7b7c40f3a5c4715c596fb2d2e32efbc50965c7423647543c135e498f2e7a49

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3fd053ae06af0925ff59543307018ecafad86da275af34881cc50b95fccf0564
MD5 8fd25d1e33a2f303363cfb2337055564
BLAKE2b-256 8d44e8c1a1212fc464b24fbbd49e6b395f248f245246511ef17401412685ad4b

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a262cb518d5b5c57ee57636098e3b1bb23297556f15e7477f83de9bd086e58b
MD5 38c8ec632330442fc0e8a796f729f6ed
BLAKE2b-256 6360c3e1c8eabbe97f7a713ffcd2f7d8f8dc0d14b474af4824b52359ae4aa44f

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14208b1e4ca912c102b1614a332c2db2f71564c1e5f3e99268eb00a2d7750e33
MD5 94813f05a0da4d95b931b09998c08931
BLAKE2b-256 3ec91b33d606c2c346f0f58589b8e44e4236e6d5daa1a86e660a150d8cc90e9f

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 283860fe58b3a6d74e5be1ece78bbcd7de819b48476d7a534b989dd6ab49a083
MD5 0147ce64ae9a425e20a082d69f5be9e9
BLAKE2b-256 368393ddc077305dc9172270f90577ff1d828b9dae550824773749d747291696

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a086cc9401fb0b09f9b4ba14444457d9b04a6d8086cd96b45ebf252afc49109
MD5 26a73c4bdd718be908bdec154413d2ca
BLAKE2b-256 0e9f28e08ecb939027fbafce0d6ff9ba1731bb55ec6b832404cff1b8e9aafa0b

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-none-win_amd64.whl.

File metadata

  • Download URL: blake3-0.4.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 210.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 796e65ae333831bafed5969c691ac806fe4957b6f39e52b4c3cf20f3c00c576f
MD5 10a480394feb16479269ce0f51cff69e
BLAKE2b-256 76bab665eb5d65fb42e0c5a1729d01733ac881a737c1875b9346b042fa5e9648

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-none-win32.whl.

File metadata

  • Download URL: blake3-0.4.1-cp39-none-win32.whl
  • Upload date:
  • Size: 227.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a95cce3e8bfd7e717f901de80068ee4b5c77dc421f83eef00cf3eddd3ec8b87a
MD5 d3cb9de513ac6451cfb41f34eaa3c541
BLAKE2b-256 a81a28f45d818e69f8bdbfa19f08e3bbc181f1abcdd3f86764e1d828dfe2ced5

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 801fbd3075abde116f4c778d609ee0f4bb2fbcfebe697cfa59d2cad12f25d511
MD5 f0a7bd22db7cfc46f9ac27a89cd0f7de
BLAKE2b-256 17fe87954508bc8a5978e9a19c36e2994f441b59b782f2dc8f11a68d27b3bb25

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 42b3e94002af4e777260e3eccd3e27d7af87a6d25208bed4510d362a2be12e80
MD5 f5d16945d486bacb2b91d891a1aaa8c5
BLAKE2b-256 ffb4fa683e37d3b828f5d61db779a6deb825be0ea6d5f0a3a8cc3d47c260c7be

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6c555d882117d638830b2f5f0fd9980bcd63286ad4c9959bc16b3df77042d6f
MD5 3badd5b8b555d416461fd66e8e03d391
BLAKE2b-256 a8111ba8cf07ab1f036a14cba3f88b844fcb05ab5642464f53243d0b54b28715

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c6141457ebad74c1912898b702373796d94f80044d29ff70782d5f0487c52fe
MD5 b43391d1608f0dee7bf7452501326e5c
BLAKE2b-256 dbf00fbd6266e95b2c7ff8a487a05df84502602866f52ad891381ade8e34323a

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68db7aa3d550b72d5c7e8654b375bffebcc0ef71a35d2ff65a752d33345fb331
MD5 17cc38ec72cf2fbe0ddee82169d39835
BLAKE2b-256 2af3162b1ca12b1d98a3830eb7d8091a4ff8c1371e2e4fda37baee0710b54b66

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1847ef3b7ea9ee1e1145562f41dff1e9481f670626b1171467199ef2efedf65
MD5 af4578bad7f1e61aa1dce87f58d0811f
BLAKE2b-256 d6dd116cffec7d28dc1d28c0f287903d4c3a752c9b5d8e5001ff22748fb8e914

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a60d56c3522f774fb3175b95a7cc52b055ae67d959ce229b2a06393fea245b7
MD5 7e07cd9aa50d2fac9f66bd169232642a
BLAKE2b-256 4990f1b0a9ea7c251efee06bede38e0bca55ecb967b6b46fc82bd272d4c139f2

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fdd7885c5133271de6864dcfd710516e75e6ded6918aae6ce68de1a9e6760fc
MD5 467773e78bb8c1f06bd5037164dec112
BLAKE2b-256 bbf67ebae20e9945e68522f1ecef912d5382aa98eb723277f366016c019d915e

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa4989ea8f8bcfa057e50014b5b26cd8cfe0b1f06aa98d433976f45caf3a5580
MD5 cb5a797792589f5c95638fa1d8b1303b
BLAKE2b-256 9bf7d8411eabc9ea0e400f9e866d455d03af517bf910a30e76c322fd9f634175

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d99136b7f7c8adcee0f7484e74b159fd3ea58e7d1e94d5351f0e98d9cfc522f
MD5 229484a8d003289861fe3fb7f6815156
BLAKE2b-256 1b636d48a55f1cff8d2aa8bdb58b4f982dce2ba4e86577b7c276e0feca7048da

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-none-win_amd64.whl.

File metadata

  • Download URL: blake3-0.4.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 210.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 47316bdc9b4689601cefcc63e00a3e015cee1fa9864463be2b4f2e12473cb47f
MD5 e71265885915711b056a7de37bdda98b
BLAKE2b-256 376a7c622125c13c670557275324bc97f01fd34089b0a4fb818100fada8f7af2

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-none-win32.whl.

File metadata

  • Download URL: blake3-0.4.1-cp38-none-win32.whl
  • Upload date:
  • Size: 227.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 d264ca87f0990f44985cf580b493508534dc6e72ace52a140cf725e42d602695
MD5 26834218b12b6041301c64f48f88cae2
BLAKE2b-256 0b6e0c8e39a9567d0e03421ec64a23ff1801ad37e81fbe22c70c6a0d76593b02

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9006a1d651443f1674fec8c2976c357ea48e894b3df707c361876858e1deb403
MD5 c5473dd6f8bde96e2c6aba9d87ca3990
BLAKE2b-256 4b6ea56d446c4a463e6520f13444d913ed1cabf0151c846654ab60f5ec32c246

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ca076728d81dbf49ba565475530a2ddf5ef8f95584e07ded7a3206a270383b30
MD5 278ddc0d1875b32780e02390767064d5
BLAKE2b-256 4eb0a143376e1a747049f0078342a7af32a1598bb10223d2110a3b17883d8bb7

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87a9fc37260d355569f0be751e0054e0b37e6a4ec022f4b7107ffeede419dde2
MD5 fb906ebd7d9d1121e221c3d9171edc83
BLAKE2b-256 fee44fcaed7a31661700a6745ae268c7f7d7421a457dd9fa50ef619cd3bc5ef9

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a18fffab95bed4801fb31e7f32a2ae8dadc0000e55003825b427c9177e5427f1
MD5 997f83216d24f8033091c65ed41bf63f
BLAKE2b-256 1f62e057bfbfa01640f3fa604a1d8bb227ac23b73f401d250109c47498d21f98

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8843c0f461dc0071d77f4daf22194a98acf70650f76054848bb77c2c17462b33
MD5 1be41ae320102eb540ba8dedc9f8549d
BLAKE2b-256 31ee1d3e6ad57caf8c78040f97a56d24028100d569fa0f641de87dcb0dae6323

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f9321c5431728694e92909d20da7d4f098e5b2cf09a70fa54cbfd98a47bb27ef
MD5 b7162d17e7d44cbea262781070d0c021
BLAKE2b-256 13d88ca391fc75870b4406534131cc0b2a6c4b1dd8230724a9d5223577e75a8f

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5b623f5e2449cff8aeda833c3ea7b68230f14653fa0181ab67b853dc58bea1d3
MD5 9242e4a5a7047ef88c7f044214fc3a6e
BLAKE2b-256 adca1272167bee0dc1dd356ca08e337b7c261110a938a0e65b3d2e45279db337

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e36f55bf272ab06583d38d5ba8a837f0699f198de150cacc7c2f64ab2c3bf9ef
MD5 aa2ab5789b2bbe81a24417fa0bd66a73
BLAKE2b-256 5ac88054c357e6f8be8ae9104b86646182a66e6d019c0a4f077062fd8f67c386

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34d7da38898ad4e0da7b8fe0bffb8c9d2788093ec202e01cd3ab24bc14049153
MD5 b090695769802a3a9f3ebcc3c687b60b
BLAKE2b-256 fd9b3e05d5775a3654f6e63494b5b027194ae385cc57b4103332b3cefa45dd52

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb6a62ef04c5ec4dd4630615c6a22ddab16eb0b7887276b3449946c12eeb37a2
MD5 1d6c5c2f7a94810e0fecead7f980b7c0
BLAKE2b-256 3ed592da3413490a71ef2ad718644106c843cafeaa77ecc3a6ac0e6433d37a5e

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp37-none-win_amd64.whl.

File metadata

  • Download URL: blake3-0.4.1-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 210.1 kB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 0c3ce6142e385222f6de5312a9fb886270b7e63d9ffaa792571b03c4c83a7521
MD5 f2cf998cd4911cc5859b7e08e738c8a8
BLAKE2b-256 72ccfa4a32e17be0965aa8623bf78a9439a4242d39b3c901f627c27dfe14647a

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp37-none-win32.whl.

File metadata

  • Download URL: blake3-0.4.1-cp37-none-win32.whl
  • Upload date:
  • Size: 226.5 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for blake3-0.4.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 46ffb411a477009dfa99a592d4408e43ff885ea7df30ed8c8f284e87866be56e
MD5 8f53a50da853b29203548fb263e9d837
BLAKE2b-256 fef21790b03cd8ff26af59033efea6898d4b368dcd272c56fa2aad43af0fb8bc

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8fa53818f1170611d781aadbcae809ecc2334679212b4a4b3feabb55deb594d
MD5 40fee2a5b27dd95841c1a64b9d16a94b
BLAKE2b-256 461d0e058cba28173fbe29b75c83a92e823996130bd862e89a15f601d9684d2d

See more details on using hashes here.

File details

Details for the file blake3-0.4.1-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-0.4.1-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a73c5940454bd693d7172af8fad23019c2f5a9b910ed961c20bdf5a91babd9f2
MD5 121329d07da61170c7640f8a2ec9a8d0
BLAKE2b-256 79db7e4676e55a0789d9fccf7a8258d9d2af836c056e60a2b97ef8ced64887a4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page