Skip to main content

zkSNARKs in Python

Project description

zksnake

Python implementation of zk-SNARKs (Zero Knowledge Succint Non-interactive ARgument of Knowledge) using simple symbolic expression.

[!WARNING] This library is intended to be used as proof of concept, prototyping, and educational purpose only. It is still unstable and not fully tested!

Proving schemes and curves

zksnake currently only supports Groth16 and PlonK (original version) along with BN254 and BLS12-381 as supported curves. More proving schemes will be implemented in the future (hopefully).

Usage

Build constraints

from zksnake.arithmetization import Var, ConstraintSystem, R1CS
from zksnake.constant import BN254_SCALAR_FIELD

x = Var('x')
y = Var('y')
v1 = Var('v1')

# prove the solution of y == x**3 + x + 5
# with x as input and y as output
cs = ConstraintSystem(['x'], ['y'], BN254_SCALAR_FIELD)
cs.add_constraint(v1 == x * x)
cs.add_constraint(y - 5 - x == v1 * x)
cs.set_public(y)

r1cs = R1CS(cs)
r1cs.compile()

Alternatively, you can import the constraints from Circom:

from zksnake.arithmetization import R1CS

r1cs = R1CS.from_file("circuit.r1cs", "circuit.sym")
r1cs.compile()

Note that some constraints that are complex or expensive (require off-circuit computation) cannot be imported directly and require you to add "hint" function to pre-define the variable value (see Example).

Prove and verify proof

from zksnake.groth16 import Groth16

# trusted setup
proof_system = Groth16(r1cs)
proof_system.setup()

# solve the constraint system
solution = r1cs.solve({'x': 3})
public_witness, private_witness = r1cs.generate_witness(solution)

# proving
proof = proof_system.prove(public_witness, private_witness)

# verification
assert proof_system.verify(proof, public_witness)

Development

Requirements:

  • python3 >= 3.9
  • rust >= 1.77

Install maturin:

pip install maturin

Setup virtual environment:

python3 -m venv .venv
source .venv/bin/activate

Compile and install the editable module into venv:

maturin develop -r -E dev

Test the script:

python3 -m pytest tests

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

zksnake-0.1.0.tar.gz (159.7 kB view details)

Uploaded Source

Built Distributions

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

zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

zksnake-0.1.0-cp313-cp313-win_amd64.whl (820.7 kB view details)

Uploaded CPython 3.13Windows x86-64

zksnake-0.1.0-cp313-cp313-win32.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86

zksnake-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

zksnake-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

zksnake-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

zksnake-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

zksnake-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

zksnake-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zksnake-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zksnake-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (986.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

zksnake-0.1.0-cp312-cp312-win_amd64.whl (821.0 kB view details)

Uploaded CPython 3.12Windows x86-64

zksnake-0.1.0-cp312-cp312-win32.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86

zksnake-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

zksnake-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

zksnake-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

zksnake-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

zksnake-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

zksnake-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zksnake-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zksnake-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (985.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

zksnake-0.1.0-cp311-cp311-win_amd64.whl (817.2 kB view details)

Uploaded CPython 3.11Windows x86-64

zksnake-0.1.0-cp311-cp311-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

zksnake-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zksnake-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

zksnake-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

zksnake-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

zksnake-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

zksnake-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zksnake-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (997.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zksnake-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (987.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

zksnake-0.1.0-cp310-cp310-win_amd64.whl (816.8 kB view details)

Uploaded CPython 3.10Windows x86-64

zksnake-0.1.0-cp310-cp310-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

zksnake-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

zksnake-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

zksnake-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

zksnake-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

zksnake-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

zksnake-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zksnake-0.1.0-cp39-cp39-win_amd64.whl (817.5 kB view details)

Uploaded CPython 3.9Windows x86-64

zksnake-0.1.0-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

zksnake-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

zksnake-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

zksnake-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

zksnake-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

zksnake-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

zksnake-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

zksnake-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (998.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file zksnake-0.1.0.tar.gz.

File metadata

  • Download URL: zksnake-0.1.0.tar.gz
  • Upload date:
  • Size: 159.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a9b824d2b2b35bfaf0e9ac0e87d3b5889b01c39cee2102094d8f01b9c6c46077
MD5 04bcc32cb8d46f2310c36316e72a6edb
BLAKE2b-256 fa885837db4105126ed3ee6c901675972243386f62bdc5ee61df8f8a50213347

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a991136e1a8234181db62f16c41b6d57845bb66d0f566b7345ae6a6af8ce2633
MD5 f9c50df2d16f6c8d970ba13738cfc895
BLAKE2b-256 7ce33cac37dc75729e72f3e2cf7b51a9ee6de5dec31ab8edc051d523901b5042

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16ab74ae8d4af8b7869722183d9731c653dcfb8f9953cc24c3c8af97937660e8
MD5 c88233e22b66d57dcbbb421374c1c652
BLAKE2b-256 b2420498b2b67cf7690584b940193c68936f8a8370fdaf74da432125d7742306

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62034ec65a89b62b9f417d3f986bab6d948d21752c55df73d6b4d4c2e80af3de
MD5 e419589a4956542a335dafee0247a1b0
BLAKE2b-256 4531f1b162ae07dd3356f549f97bfca6ed3770d4b5956432f62f0bca3bf75b67

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e9699e4b92111b1cdb868a2166a1c5d40faddda56c3703494c9f6e621e6d183
MD5 6468508f026e486219c9de87f1536fdf
BLAKE2b-256 becbda718225ed8f07c98245576c9b79c4e9eff2418ac44305c859303ae93b19

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bde9070505240490cd15df6d62c0987060090767bdf39d7ca10efe344d2c77b7
MD5 193ccf4cf30e713ba9112e424167b25e
BLAKE2b-256 46956c45f405372bd8ad07f45f1c6f9e18297c88044fd4e4c90e647ab834013e

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c3d8a2c0a1a457a8b5556edc6e5f70dfd6d7153753df7ef07626deaa5fa7275
MD5 1b72b82f61ca1effda55efb6559bc1c2
BLAKE2b-256 9cc053edc47bc888fc7d81f0445e9779da3f2760bbb901bb202c65aaec0ee7dd

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4e48ab3790394c4b08c7ce984166d395c2805219f0699c5e07b4b4bcf4c3494
MD5 a72de5610be31018d315b1d7b2617936
BLAKE2b-256 32b2541de36279b0ba1857165ccd127fa6c20653878403b609a54b3ec813e9d5

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79beaed5bb3dc100d1ad14b592326ceaf4d2c8b6ad13e232c5751fcb1a1c9fc3
MD5 e144e2f0460ab9074a097588a64166dd
BLAKE2b-256 cc5aef52c30ea5eadacca6bf84108d513828fb82b6d987491664ac1ac08dacfd

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 280d6ace4af7f0780f31598d526aba97c1e401da884d88eaabca6e730d0e9c7f
MD5 272293ae012a863cbfe21318faee0337
BLAKE2b-256 59c9e7896e2ac3fd0d2250087c549becbd339f2c731a0f142141d049c6a4c3c5

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc775bb1da00a45b1e918ccd8e471eea9850e95944ebfdf63b2b77b2d9c96eba
MD5 987d1d053a8c2fc31640a44e5b93bb64
BLAKE2b-256 965d2370b4f7092c0e8765edc85b0c5f2edfef3000fed3b6285436f89024a22a

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zksnake-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 820.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8376a8628f38fcbc1eeb39a589e433ecf67f2484542279c261388e75afae3c0d
MD5 aa28f4be384ab3ba8d2c799f1bd498fb
BLAKE2b-256 6376a23d65e1c76e3de41a489de366cd9ae45e79d63974bd0619dfa93eeebb04

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: zksnake-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 81f6665902910d0854164685f21244bc7175ee5389840c08aa7a8ca04d6ce35d
MD5 a6ffe3dac79280f61e7c9a59afb6dff6
BLAKE2b-256 0458249aad38886f8e5afd0c3c3acaae0e3556051bde93dd02006da32ddab7db

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 995ef89fbfdaa5c29154d933619d50dc73f094f39348afd0c170f42754d1c486
MD5 f9a761bb175c41be0ab777f9d3e06c87
BLAKE2b-256 150627275f4f2698a0ace0a24cb447b48fb8db32d5567baba77f9137fe0b30e0

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80982b1a4c0a0a9b02a7daa1183a2d5b1101f29183f5ef25577567b60e47520f
MD5 40ecddb021c6e48562706f8032e8c4b5
BLAKE2b-256 0d9e9baf6559c7e9c3937b6155ca6b36b3637eaa9bc543cb17caa44618239e1a

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46b2a30363cad5bc53be300d9e5730162db3cbdb26f21556221fe794815d0c1b
MD5 acf3079fc176acb57b686bd94effc26b
BLAKE2b-256 eb1551236b17e683d73a5e71c8b9416993d7e50718a751473982b3009bcd07ee

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f39d633e4f64744c12fa61a98eecc352c7f93e38bef91d641eda0f697d7da320
MD5 3aa606b512b64bcb0931519097ab3db6
BLAKE2b-256 31cc1b384799f0a5c7933467f39592ac4d98bcba9b4938385603277e54c3a747

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d2789646711d6b4adbd43931601fde1fa197426c3e613c15104b1f954b5a204
MD5 1167cd1402ca5cd32977541c9fd5fe45
BLAKE2b-256 b95cc9d92f428dbb200663d07941e0ca061f66b7686295203ee296afe9c42927

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fe9101fdd4eb9b6d2f5bb9ead6b7879d07ae28717765240219f62bc60613ca7
MD5 6f635f8bf2627310b1cfb37308dfab1e
BLAKE2b-256 80f0fb5984c4846cd9abec90891853968471a80164d736d81eba26233d6965ac

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2876d42e8bc29244f43e19909ec29ef486afa199751e626fab00bc7d8431901c
MD5 7a50c97a8986f9d28b2f50f736cfd192
BLAKE2b-256 7c55915b4587fb6aa5242d78e20804a9468159602e430311fed0005f49a98726

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 490ad44bed9c2dce562a8f8bbffee600e5badaffd88affe4f376326fba15fb96
MD5 4c224a14f6902400ad69a34262510600
BLAKE2b-256 91c78791651f072e12a4dd542feb80f36119afc6a43d5bab6b44d81a9540888c

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zksnake-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 821.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96a687038f68ee8026a5dc04f994496be2cddfc8a80feb3482f43b0d4611e4e4
MD5 1ba1824a3761ebadb455d5a3079b01ca
BLAKE2b-256 0abb367696ae1a635603bf88c8d68b55f31582235af40bee24da1169649ccc30

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: zksnake-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fbd564da872798521893381ef00773a48cd5637ec9e2c5ba4e0e04023f394da8
MD5 398ce07f14fb914f79a09a2871c3263c
BLAKE2b-256 890f30fb0e80ff74a4944836267d3d912ccb7c184386e23c3c357795a6267ba8

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 251368d416a798ff288b1075604d54b88b26262fdbac619260fb322660551480
MD5 756efaeb55d3d462112f78dd01ba16e4
BLAKE2b-256 420d793aa099001876f041d53dc2cadc7bb82a9c519d925ea496aab9db3aea3d

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90973be7898596d4c122c81d0a2775721dcf5e13220a41d4e370cb52fb98f778
MD5 411a2c152ff59c0144f7813c99e80bb5
BLAKE2b-256 0a2d8266c7508981e6015a290124dd5a49c6f5390c015cbb8f66406a2ad9d58c

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d731e9c868b194ce0dc70973642234b0c5bdc56f5d8e6675df6140693fb6959a
MD5 a52883e457867fa1213ccbd20e7a3d0f
BLAKE2b-256 f7fb2285fc62157eac27a029e5e9702f6a55dbd6372a1032d9e1a869f2108c33

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d202b972473fdc5f36dae6abebad8e78df08ae48bc02e7c334e0b5fe2d66930
MD5 c2b641f56effd04d2ba69a4a6e0938e1
BLAKE2b-256 73d8a357ae76762d210d439ebebf6504a218164394e5adfd61ded011cf07a395

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83b9f7fe6abcb809477014d1bc0b7a960798b12764ce2115e756303e675c532c
MD5 4f9b99eff244830ec1b7ff77383f1084
BLAKE2b-256 a624e94fbdeeb325646742d2c4149722a24212a0e65ec547100421bdc502d0fc

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bab06de16584f6b7c4b83e589f653876f734ee454be404f62ca953bb8cf4c46e
MD5 86288dabbcc3943727fb4b27fade9f08
BLAKE2b-256 b8fdacbb0ee99e73b715f0c62ac54d4a164c9e424d7c8f8b327c70db202ca939

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df277f4b52cbb79a83144c03851ab41af6291eb9070ad45854bc32345a20b7eb
MD5 9c498ef84732022f52e5a4ca3d984efc
BLAKE2b-256 b45703ae5539399c685c93f74138e04be57cca0098a19153390c95cbd8a466ed

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 149eb71dc589c2ac9a9e4fd8784eb58675c84bd89ff8e117aa01940f121d8de7
MD5 b741fd5e6c0fc530fceea7ef0cde40aa
BLAKE2b-256 acf06f7a88ccc7fe4162574de4f5a77cfb09979ce1d78d3bd923d0db4051d067

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zksnake-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 817.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 035bb278847c1767b608fd807efc4f86e35767bf518391929288f69f7fcb9e66
MD5 98647bd0c377e75f97ad5d2360c57bb2
BLAKE2b-256 17c5f55751a49b62823effd287f4ac587b75fed8eb78886f333f72e458190b98

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: zksnake-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 eb589aac99a6a4c603efa6ae6bdf7a08496be56913b8dec3af391a1630802070
MD5 d30d4c39afa2addf8a8aaec9a19dbd8b
BLAKE2b-256 249a00f2f10751445b97fc9c8050e2afc695d37273deb606b6c98f36779d7a0d

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5e4d746b602816cc8c89400dbcb604216f58b162a85348f10305197681f018d
MD5 1afa65c9b9465f4ccf18d2f3387d5fce
BLAKE2b-256 237327c250166577d7adb1de695d37d3d1b5a1bd0835045f0a0d695e8009aa94

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27a359298e0a4b51b42e41dad8fe886676476fc6004d9548a932f7d12cc68234
MD5 f3d9e7cacc043dd2e8e44f0e97d697d0
BLAKE2b-256 57c0d694ca4eb14fb9576cc9144bfc66b149a24276bb98e41667b5beb0621df9

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9bc79c07f1c503b9f0d5d91213581be84c2e7ecfdfb3020c7e196e4e7135de39
MD5 7c346470b2e2eaee066c4bc70e222cc4
BLAKE2b-256 f511b88596a83ea0838b4f069e6c9d72b9ab30d3a8b1919ef783f7f8807814f4

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b66c2e6d8ebca600d3f59d5741f922df98cf53295731952df041b2813e2c186f
MD5 92f414a7ea65ce53cff6457fbba353b4
BLAKE2b-256 a7bbee62a7001366f548a1663ccf7937f07762775d2e6d954cabb8a60b8c4e67

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3258114153e55afff3e694eec4a0a1017c176cbf4799e494c40d74e3917d772
MD5 43c438e0378c7e824b1b80c84f7d3d10
BLAKE2b-256 dcde0d2f6b45451c75179969e8ef5936fa62ceaa963e89eaebaf35f898faba43

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8546cc5b29cd47a1c7e56815e17bc1733ae6115f3a4584b50e125995fba99a5
MD5 5e4224621bce3676e33ac2aa2e5f3c99
BLAKE2b-256 35b9f05ec9d4dc9bc65f978af43149485c80284e963b02f38f74e98851c20a8d

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9bbc3be177f20be588d7d1ee540eacbc196e8685d2421a584b40d3ed1abbd8a
MD5 9701367e66fcd7d1cb08991ac0268cbf
BLAKE2b-256 0480433be0b09c9a6144a0c1d8c2ae6d3dada87ee2017307b32c14d9fc7ebdd2

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88a8b93c1d8713417c9c9723dd78c081d98af8176d9e6544b69eb4fef06e7c2a
MD5 c9dc1fe48a1f9c17152db5e0bb7b27dc
BLAKE2b-256 074c3e6229c3b63dbb5e90e7e5ab9be53f0171424c6d2019eaaa5d683da14dea

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zksnake-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 816.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 de741f12546a3ec0cfcf93d3fe21fccd426445b66df2110a2e2396d33b3278b0
MD5 935ba1d6af508f6ffed70eaae4ce498c
BLAKE2b-256 41d475fa93ede44e3c6bd8759e379e2961ef65ee94bbce884d596753f05bd750

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: zksnake-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cdb749d4dd8570ea297ef78258a0016a135e0a8bf5dd31f5f1939a972bb626d5
MD5 3465db4ebadb7ae41de7d84c02635c8a
BLAKE2b-256 c94c3b45a5cbcd9af3c186eb7c4d4beda7ae651a53c7262da49504462517485c

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 673e2a62e60d68ac579667245038f7d69ef58fe250258b98607e099a38c97285
MD5 28ec4c5ad37854c7047ee601ae83ac42
BLAKE2b-256 144e1f447a503063d15214c7e1d2c8a7cb1d432a45479b5bd29b5177e91b9260

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f64111b22ec800bc5482f7c94d102ae76d62d0dff1cc37521d170763f92dc36
MD5 689f72bf2e9c4cec852738b22329b5bb
BLAKE2b-256 7577a4134a3624b22e7e1c1a0af0dfd5572835322d1151916e93516314d3d8fe

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa857e44dde6e2dce5a1b88adfd2bcd9e37d0a92f6abfba2061507f84d292403
MD5 abde7ad23191117e0ba7863acf67195e
BLAKE2b-256 6b2c65980505fa21b473a3f0c6ce70d246e35ee170c4d38e2b9761480ab32bb0

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ed7eb59d101e5664c37df2782e4b16ddd049841ac4fd2e4a60af32edaa33f33
MD5 1ac727fa71e2acdb25dbf7570966314e
BLAKE2b-256 dea138edfb7a87001795d0dcce7682c69be5c06179f0c9436f96ee3536e1d21c

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b40cb54710eaffa2d12e0f9d41caf7a684be6b437e460c349f906f125820706e
MD5 a32f26af3f9a08e27d0ba7a92fa72ddb
BLAKE2b-256 973b042168714d24032fd9d7a5c75aa64adb599d3a32b6081883f6e6dba9f2db

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b970de7e8b491ecdf754cf6218b5ddfa098202fc68ea02f47c2063af54a4b889
MD5 fbf45757bcc53861746b872e73869eb4
BLAKE2b-256 642037d278a577bd25d46aab6d38257ea5e823310ac84f182b429b080e0245f6

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zksnake-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 817.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e3cea70c0d5dcc2f84457411ec0c7ad6a14928df83e82106654e67837251190
MD5 f371e3a1171bc67a43a868f87d947373
BLAKE2b-256 c802ef2b65238c6a6e95ec3f8ac3a83c35f5e434da55446b54b193859286a3e9

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: zksnake-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for zksnake-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fc89611432d2e09d26c61a1c882b8e83db09480c16fb88398917e902d7c9cb1c
MD5 f687e9c1c03f84a720c216c0cb93fc57
BLAKE2b-256 12b1bbb2d93b4e6b135bb339795c38d07ed3bbb265b2c3dd15eebe2c14639637

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6f5e379cfb9275b9231739f6273f53de689eba8e3526affd49c9431f84d73f1
MD5 72f6f0d67278b403152a83366028f928
BLAKE2b-256 99317a228689e6d7a660fc277fea787b79f91dfb0e04d9e89408df83632f93ab

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7cfed8012d6ccdf67e3b87ac55c85b7d58a98cbcf7bad7140398d4285d4f99d7
MD5 11f30152b4fd92308f6138a949fc33e8
BLAKE2b-256 9d208fec24d05589ff4fdd61d6fc874d799452e2a28e5473f764452915ebce2d

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 349c612765b4bf8333503c66f5bca3bd9ea43e8b520fff7486ea2b816f34c896
MD5 864567945271cd994901ebbdba1f701d
BLAKE2b-256 439081a1cae0fe030a073d51340f4216ac0eb5e5f43902621cc4eb466cb34d9f

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0779244721a5646cc020b30fcd8acb1b6207daa9934d0947e260d6b135e2424
MD5 58272a039403b746a6e8c13e75939457
BLAKE2b-256 6c26326ec031e9019a4c799ac71ba44ddc0d19a9722efcf568ae8924cc0201fb

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b35174a609f77494474d58ecc48e64a5494d5d4624d2ee64abb2037611c82252
MD5 91ffdc73c432aaaa2b98fdb3d56fe3f9
BLAKE2b-256 a44e8b7db13229bf572f609b1824d087225b5afd461d3c41cb88c9fd6df11728

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38348d668aa2646da9ae394d3a43eccd46a0659643c51960f60037055f4a7e47
MD5 009416f8ff3c1faa26a863369132d231
BLAKE2b-256 5ae83a7a3ce1870a168247b84ab7da134d29847815bb4ab8e701a9fff4ecb322

See more details on using hashes here.

File details

Details for the file zksnake-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zksnake-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 496a27ea88017d6086975b8568949ec220159ea4f7cca21d8a716edc51a35918
MD5 9b1cf25d92bfa3387d76e45b44b296f3
BLAKE2b-256 72c3ea284f1c723bb4399f50fac5e0e0a4311602d90c17376f75e77c61ec9e3e

See more details on using hashes here.

Supported by

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