Skip to main content

Pure Python Implementation of Diffie-Hellman Key Exchange

Project description

Pure Python Implementation of Diffie-Hellman Key Exchange. Py2, Py3, PyPy compatible.

Example

To use as a library.

>>> import pyDH
>>> d1 = pyDH.DiffieHellman()
>>> d2 = pyDH.DiffieHellman()
>>> d1_pubkey = d1.gen_public_key()
>>> d2_pubkey = d2.gen_public_key()
>>> d1_sharedkey = d1.gen_shared_key(d2_pubkey)
>>> d2_sharedkey = d2.gen_shared_key(d1_pubkey)
>>> d1_sharedkey == d2_sharedkey

By default it uses the group 14 (2048 bit). To use another group (e.g., 15):

>>> d1 = pyDH.DiffieHellman(15) #or pyDH.DiffieHellman(group=15)

Installation

To install geomap, simply:

$ pip install pyDH

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

pyDH-0.1.2.tar.gz (3.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page