Metadata-Version: 2.1
Name: py-ed25519-zebra-bindings
Version: 1.0.1
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Summary: Python bindings for the ed25519-zebra RUST crate
Home-Page: https://github.com/polkascan/py-ed25519-zebra-bindings
Author: Stichting Polkascan (Polkascan Foundation)
Maintainer: Stichting Polkascan (Polkascan Foundation)
Maintainer-email: legal@polkascan.org
License: Apache-2.0
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Source Code, https://github.com/polkascan/py-ed25519-zebra-bindings

# py-ed25519-zebra-bindings
Python bindings for the [ed25519-zebra RUST crate](https://crates.io/crates/ed25519-dalek/3.0.0) 

## Documentation

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

## Installation

### Install from PyPI

```
pip install py-ed25519-zebra-bindings
```

### Compile for local development

```
pip install -r requirements.txt
maturin develop
```
### Build wheels
```
pip install -r requirements.txt

# Build local OS wheel
maturin build --release

# Build manylinux1 wheel
docker run --rm -v $(pwd):/io ghcr.io/pyo3/maturin build --release

```

## Usage

```python
import bip39
import ed25519_zebra

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_zebra.ed_from_seed(bytes(seed))

# Generate signature
signature = ed25519_zebra.ed_sign(private_key, message)

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

```


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

