[][src]Crate ed25519

Python bindings for the ed25519-dalek RUST crate.

py-ed25519-bindings provides bindings to the Rust create ed25519-dalek, allowing for some limited use and management of ed25519 elliptic keys.

Structs

PyKeypair
PySignature

Constants

SEED_KEY_LENGTH

Functions

PyInit_ed25519

This autogenerated function is called by the python interpreter when importing the module.

ed_from_seed

Returns a public and private key pair from the given 32-byte seed.

ed_sign

Signs a message with the given keypair, returning the resulting signature.

ed_verify

Verifies that a signature on a given message was generated by private key corresponding to the specified public key.