pyDH 0.1.6
pip install pyDH
Latest version
Released:
Pure Python Implementation of Diffie-Hellman Key Exchange
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (Apache)
- Author: Amirali Sanatinia
- Tags crypto, Diffie Hellman, Key Exchange
Classifiers
- License
- Programming Language
- Topic
Project description
pyDH
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 pyDH, simply:
$ pip install pyDH
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (Apache)
- Author: Amirali Sanatinia
- Tags crypto, Diffie Hellman, Key Exchange
Classifiers
- License
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyDH-0.1.6.tar.gz
.
File metadata
- Download URL: pyDH-0.1.6.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 748ba74bc5e60066c05ef0047f71e8c4ab88e44c20622bdbfa9ab73a7f9e47d3 |
|
MD5 | 85cf8c9325e32c7e0bec6e9b7085c9b4 |
|
BLAKE2b-256 | fe2410c3d959bf093592e11badb32850fc1271ea01d018ebe1067e507182b097 |
File details
Details for the file pyDH-0.1.6-py3-none-any.whl
.
File metadata
- Download URL: pyDH-0.1.6-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45ef1010a93555a0ffd2979841bc4d0d411c9f5b09418d1ae84ee27f255ec1e2 |
|
MD5 | f4b52358c024050b91789d9f75921f44 |
|
BLAKE2b-256 | 3a3bff8929cce916915378c5f0db73d9fb62aa54bdd4ea8add7b9ad024f092f6 |