Metadata-Version: 2.0
Name: donna25519
Version: 0.1.1
Summary: Python wrapper for the Curve25519-donna cryptographic library
Home-page: https://github.com/Muterra/donna25519
Author: Nick Badger
Author-email: badg@muterra.io
License: BSD
Keywords: curve25519,curve 25519,donna,cryptography,ecdh,ecdhe,elliptic curve cryptography,ecc,diffie hellman,key agreement
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5

Curve 25519 is an elliptic curve cryptography key-agreement protocol.

Two parties, Alice and Bob, first generate their (public, private) 
keypairs. They then exchange public keys on an insecure channel, and 
use the protocol to establish a shared secret between them.

This is a Python wrapper for the 'curve25519-donna' library for the 
curve 25519 elliptic curve Diffie-Hellman key exchange algorithm. The
portable C 'Donna' library was written by Adam Langley, and is hosted 
at https://github.com/agl/curve25519-donna. This library is a near-
complete rewrite of an earlier python wrapper written by Brian Warner 
of Mozilla.

Documentation is available at https://github.com/Muterra/donna25519.


