Metadata-Version: 2.1
Name: curve25519-donna
Version: 1.3
Summary: Python wrapper for the Curve25519 cryptographic library
Home-page: http://code.google.com/p/curve25519-donna/
Author: Adam Langley
Author-email: agl@imperialviolet.org
Maintainer: Brian Warner
Maintainer-email: warner-pycurve25519-donna@lothar.com
License: BSD
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
License-File: LICENSE.md

Curve25519 is a fast elliptic-curve key-agreement protocol, in which two
parties Alice and Bob each generate a (public,private) keypair, exchange
public keys, and can then compute the same shared key. Specifically, Alice
computes F(Aprivate, Bpublic), Bob computes F(Bprivate, Apublic), and both
get the same value (and nobody else can guess that shared value, even if they
know Apublic and Bpublic).

This is a Python wrapper for the portable 'curve25519-donna' implementation
of this algorithm, written by Adam Langley, hosted at
http://code.google.com/p/curve25519-donna/
