Skip to main content

Python bindings for the ed25519-dalek RUST crate

Project description

py-ed25519-bindings

Python bindings for the ed25519-dalek RUST crate

Documentation

https://docs.rs/py-ed25519-bindings

Installation

Install from PyPI

pip install py-ed25519-bindings

Compile for local development

pip install -r requirements.txt
maturin develop

Build wheelhouses

pip install -r requirements.txt

# Build local OS wheelhouse
maturin build

# Build manylinux1 wheelhouse
docker build . --tag polkasource/maturin
docker run --rm -i -v $(pwd):/io polkasource/maturin build

Usage

import bip39
import ed25519_dalek

message = b"test"

# Get private and public key from seed
seed = bip39.bip39_to_mini_secret('daughter song common combine misery cotton audit morning stuff weasel flee field','')
private_key, public_key = ed25519_dalek.ed_from_seed(bytes(seed))

# Generate signature
signature = ed25519_dalek.ed_sign(public_key, private_key, message)
print(signature.hex())

# Verify message with signature
if ed25519_dalek.ed_verify(signature, message, public_key):
    print('Verified')

License

https://github.com/polkascan/py-ed25519-bindings/blob/master/LICENSE

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

py_ed25519_bindings-1.0.0.tar.gz (9.0 kB view details)

Uploaded Source

Built Distributions

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

py_ed25519_bindings-1.0.0-cp39-none-win_amd64.whl (173.2 kB view details)

Uploaded CPython 3.9Windows x86-64

py_ed25519_bindings-1.0.0-cp39-none-win32.whl (207.7 kB view details)

Uploaded CPython 3.9Windows x86

py_ed25519_bindings-1.0.0-cp39-cp39-manylinux_2_24_x86_64.whl (905.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

py_ed25519_bindings-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (212.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

py_ed25519_bindings-1.0.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (534.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

py_ed25519_bindings-1.0.0-cp39-cp39-macosx_10_7_x86_64.whl (269.0 kB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

py_ed25519_bindings-1.0.0-cp38-none-win_amd64.whl (173.2 kB view details)

Uploaded CPython 3.8Windows x86-64

py_ed25519_bindings-1.0.0-cp38-none-win32.whl (207.7 kB view details)

Uploaded CPython 3.8Windows x86

py_ed25519_bindings-1.0.0-cp38-cp38-manylinux_2_24_x86_64.whl (905.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64

py_ed25519_bindings-1.0.0-cp38-cp38-macosx_11_0_arm64.whl (212.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

py_ed25519_bindings-1.0.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (534.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

py_ed25519_bindings-1.0.0-cp38-cp38-macosx_10_7_x86_64.whl (269.0 kB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

py_ed25519_bindings-1.0.0-cp37-none-win_amd64.whl (173.2 kB view details)

Uploaded CPython 3.7Windows x86-64

py_ed25519_bindings-1.0.0-cp37-none-win32.whl (207.7 kB view details)

Uploaded CPython 3.7Windows x86

py_ed25519_bindings-1.0.0-cp37-cp37m-manylinux_2_24_x86_64.whl (905.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ x86-64

py_ed25519_bindings-1.0.0-cp37-cp37m-macosx_11_0_arm64.whl (212.2 kB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

py_ed25519_bindings-1.0.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (534.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

py_ed25519_bindings-1.0.0-cp37-cp37m-macosx_10_7_x86_64.whl (269.0 kB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

py_ed25519_bindings-1.0.0-cp36-none-win_amd64.whl (173.3 kB view details)

Uploaded CPython 3.6Windows x86-64

py_ed25519_bindings-1.0.0-cp36-none-win32.whl (207.6 kB view details)

Uploaded CPython 3.6Windows x86

py_ed25519_bindings-1.0.0-cp36-cp36m-manylinux_2_24_x86_64.whl (905.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.24+ x86-64

py_ed25519_bindings-1.0.0-cp36-cp36m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (534.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

py_ed25519_bindings-1.0.0-cp36-cp36m-macosx_10_7_x86_64.whl (269.0 kB view details)

Uploaded CPython 3.6mmacOS 10.7+ x86-64

File details

Details for the file py_ed25519_bindings-1.0.0.tar.gz.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.12.1

File hashes

Hashes for py_ed25519_bindings-1.0.0.tar.gz
Algorithm Hash digest
SHA256 8134672ea50203d74b2000efbff019fee9e310906f9bbd56ab36cce0ba22e3ea
MD5 b7697bf2013482758f8e88bbca2192bd
BLAKE2b-256 7811d6308cf8e755aed2c76121a05b4e413b4f17a8fe2a508dd7d52db5ea4561

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp39-none-win_amd64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0ff9218db39a04c293e509e6a1bc3fbf25a6f6243e3387085557afaf7ea9fd3b
MD5 82bad16cdc3c7f31ed36adc41ae7e777
BLAKE2b-256 0abda48f26c879bb0ad78cf6a4dd98009c7c8861a86155ef34de2a24d1dabc0c

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp39-none-win32.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp39-none-win32.whl
  • Upload date:
  • Size: 207.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 914c28e350ca1c69ea42a023fc5335f1415cc9fbbacdb8e1133154b85ee3e0f3
MD5 d3cee51539e96e0002ae5ffef6c772f4
BLAKE2b-256 5262668daaf671bf8c4a31d0a40900775f082b906fb3b5cc2695330856ab616f

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp39-cp39-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp39-cp39-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 905.4 kB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 a3ca2a5870bec6374d346b9257496dda6037f3378b88d36e6d8bebf055da6811
MD5 40aae09871e474381a97cccc8ecad3a2
BLAKE2b-256 bf9a69bb4deb1fb28f9b6f02b54385aeec51e845d86cbd10854e1e576a17f8d1

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd68c9f8cae9b7110a530eaffae94e59717f115e55b265951a475bc2aca3bf37
MD5 f138c3ee957d1d1cf9436aedd614d985
BLAKE2b-256 bc1b6fb1f070277f5820ee5f3c76dd8d95220f08f757798129c84be4b8dd4770

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 44e44a6d5165c7861c7f8c950f9719dc68d42700e54f3b92ccfb3a6dac9f5bb4
MD5 70312c7bbf81091940b68f16986c4b0c
BLAKE2b-256 1acf4d5c2a532abc8aaf147cc50ba57bf46e310b33cd4d4a0b8d09e95bb17f1c

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp39-cp39-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 269.0 kB
  • Tags: CPython 3.9, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e51767ac4ba4c697946e771e8fb32d884e5299758bfe4f12b20eb335e21bef57
MD5 67384e2bccd4a29408a43a331185d786
BLAKE2b-256 533f38e2c92729c67ac9dd58d0df390fc73f410de47002ca5faf72ee08a9017e

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp38-none-win_amd64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c9e2b76ca25e2e8a44a3557f14ea2ea42c1f354be957446044feb54803ec8c7f
MD5 470cb06e3a168fbfdc2c51ac6ab76a14
BLAKE2b-256 69e13eff4e0db69c2dff5d9a45b30ab59527b6369e7262d0a66d340a9e918409

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp38-none-win32.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp38-none-win32.whl
  • Upload date:
  • Size: 207.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 875c3aa8cfa3652c7fa13df466189e9d4bf8b13a13cc5dad81d288d5c5638d35
MD5 05a7a594cbdec8bd85119779ae75f6e7
BLAKE2b-256 1ad6ad4a5a415e364c2e33a465e64a29dca557c2ff8e8abc2a0385a4e63b40d3

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp38-cp38-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp38-cp38-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 905.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp38-cp38-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 078125ff714482e242f608a16079c5908dc91bc199205ac713bcdbf946cbc622
MD5 dba2780dfab4e48091a89ff2ffd2e2b2
BLAKE2b-256 5bed4cb066fd94f80d8486047254321e9a2f9b958b82385598cafa51c5fb8109

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8d38b4f32beee816a92f0383c63a9fc4dd541a7078a05bdfdb74833fd63762d
MD5 464619c448d9e09dbf0f221174bb9dab
BLAKE2b-256 da255cfef7b566651d92d5062b3300486b81b9dd336d354f24a320889b59f29d

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0f139474bbf1f422464a14a8ddcb634dff3142ddde4ceab0774d0c7555e247e2
MD5 818d3eea868344619bcd52a4fd4d4824
BLAKE2b-256 5948695612fe91837cf45724f42b53581ccb6a5909b1f1a79897944c2a788cba

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp38-cp38-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 269.0 kB
  • Tags: CPython 3.8, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7070dc81d63649b04da12bbc15887a9a41a60ac0e7d0d964dcac0725d322f85d
MD5 272ceca86b150b3c93eb7f16792fe126
BLAKE2b-256 af3a0e08ff61bad0e55d623eecdaac5f6ffa52cd8bc61ec2f987be016f389a47

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp37-none-win_amd64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 3144ea440adbd863bc2b7b94f1763c293a6aad0dd32832a9eca97fd7a52ed1b1
MD5 95b0178b8ffc9c0929b7be56f051ecc0
BLAKE2b-256 3e978d3dcf17abcdba159a6003354a114aec813b84caa70e70761837196b1170

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp37-none-win32.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp37-none-win32.whl
  • Upload date:
  • Size: 207.7 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 790c1bb4846b770ee3e1b0dea5cf653b5f73f27a344ada2c777346e54fdd1858
MD5 cba5c0c9569a9d2c58343c92296368d2
BLAKE2b-256 e5fcd9e6d7cd4a24ac3c774c6029804e0ed53b97b7442050b6b1fe8af0663396

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp37-cp37m-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp37-cp37m-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 905.6 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp37-cp37m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 917d59ad8e358ec41a101e429ed3ab62355e040ee2b3ef4175ecba52c0d2e2ab
MD5 bb6ac1815f23cde621762bbde7496094
BLAKE2b-256 aaa1745bbcade9710f8ba9b9df852679ec2fb084cfb4146eb69354e9f9b055e5

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 671abd34580cda78743255aebea938c905f2c671b4b3d03a84a9f4bdd7bfc0d5
MD5 25b3412478f1bda8d396c962df8e6a25
BLAKE2b-256 0bbf89510c60c2f46058d38a107e97b604f229ed9fdbd1f5d00b81d148e7f1d3

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f5e3ce84e0e82056c37469fc07a5f57b30417731383bc456890cde757319db69
MD5 c98b216e11fa63dc012cbe2da5e81b54
BLAKE2b-256 bb27d0c43adebb66e2eb9592eeca92e1b4011c5a6b80d95d4fcd315df28c2c34

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp37-cp37m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 269.0 kB
  • Tags: CPython 3.7m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d7305f0252b1b50abc4888b96b8d7a2d9d92694ba8e4fa4f8ecbcfceef900132
MD5 de87936a770796523aada56f77e474e5
BLAKE2b-256 64d044e636b760ab0309ecf51f6718c5d61f6802e817380d82f4e460d85b47ba

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp36-none-win_amd64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp36-none-win_amd64.whl
  • Upload date:
  • Size: 173.3 kB
  • Tags: CPython 3.6, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp36-none-win_amd64.whl
Algorithm Hash digest
SHA256 8dac4b94090f54b48a66642a79021a68671fa3c3b87fc1b94ebcaba0afeb70f8
MD5 2f89eced29d184f1ef8bef102ed8cc6f
BLAKE2b-256 0451f49e461daf9b8c62f0a42dca10f44474a697d5b29c12c5824b64f91a601c

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp36-none-win32.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp36-none-win32.whl
  • Upload date:
  • Size: 207.6 kB
  • Tags: CPython 3.6, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp36-none-win32.whl
Algorithm Hash digest
SHA256 8f051e04614642a039b8941a34dcfbe0d2ea091a09cd39e71571a887c8bc7665
MD5 98c4a8a85fffaf80b6968d73d2e7226d
BLAKE2b-256 1d48d18882a69dfb94471d450bcb5080542d6ae8c1fbcc00a26ce8da96b0501c

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp36-cp36m-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp36-cp36m-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 905.8 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp36-cp36m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 f75343018c967755c3b35ba3e2c32676958d2482480522500d02150634b8f2c4
MD5 875d63e320e2004310f0570b9d9c3d38
BLAKE2b-256 49f5660e0d4a5845a386d72edb94901a587a0cd085960413457259abf64dceec

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp36-cp36m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp36-cp36m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2e0c51d7e002208c6a37a86cbc97ccc46df3b58a028770538c950e730d663c1a
MD5 de9390c70cb3d22cb673fc158d4408ea
BLAKE2b-256 3e79059f65a4183af028ae33b46f0f17b14d904403bdf0168efd489c00363c37

See more details on using hashes here.

File details

Details for the file py_ed25519_bindings-1.0.0-cp36-cp36m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: py_ed25519_bindings-1.0.0-cp36-cp36m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 269.0 kB
  • Tags: CPython 3.6m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for py_ed25519_bindings-1.0.0-cp36-cp36m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 506469c161db6188ae304fc49e193cc842429337ab1270a425408222d0d9749e
MD5 a548a4af7a87dde0161b6ebec81c9a6f
BLAKE2b-256 b22fc1a62824d75819b420230b7c1a570c8fc6632728d785b35ce0a956a00f81

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