A self-contained cryptographic library for Python https://www.pycryptodome.org
Find a file
2016-09-20 00:13:52 +02:00
appveyor Package MPIR in Windows wheel 2015-10-10 22:48:47 +02:00
Doc Use ReadTheDocs theme 2016-09-20 00:13:52 +02:00
lib/Crypto Prepare docs for release 3.3 2015-10-28 21:35:55 +01:00
src Keccak objects cannot be copied nor changed after digest 2015-10-28 18:01:47 +01:00
.gitignore Update VCS ignore files 2014-06-16 22:00:03 +02:00
.travis.yml Add Python 3.5 to Travis CI 2015-09-22 04:53:14 -04:00
appveyor.yml Package MPIR in Windows wheel 2015-10-10 22:48:47 +02:00
AUTHORS.rst Update documentation 2014-06-16 21:43:19 +02:00
Changelog.rst Prepare docs for release 3.3 2015-10-28 21:35:55 +01:00
FuturePlans.rst Updates to docs 2015-10-28 21:21:29 +01:00
INSTALL.rst No installation of MPIR required with Windows wheels 2015-10-10 22:48:47 +02:00
LICENSE.rst Licensing of MPIR (for Windows wheels only) 2015-10-10 23:07:38 +02:00
MANIFEST.in Move LEGAL into Doc directory 2014-06-23 22:43:00 +02:00
pct-speedtest.py EAX performance test was running GCM 2015-06-05 21:30:01 +02:00
README.rst Updates to docs 2015-10-28 21:21:29 +01:00
requirements.txt Use ReadTheDocs theme 2016-09-20 00:13:52 +02:00
setup.py Add Crypto.Hash.keccak module 2015-10-28 18:01:47 +01:00
travis_install.sh Drop virtualenv and pip from deploy script (Travis) 2015-04-30 05:04:53 -04:00

.. image:: https://travis-ci.org/Legrandin/pycryptodome.svg?branch=master
   :target: https://travis-ci.org/Legrandin/pycryptodome

.. image:: https://ci.appveyor.com/api/projects/status/mbxyqdodw9ylfib9/branch/master?svg=true
   :target: https://ci.appveyor.com/project/Legrandin/pycryptodome

PyCryptodome
============

PyCryptodome is a self-contained Python package of low-level
cryptographic primitives.

It supports Python 2.4 or newer, all Python 3 versions and PyPy.

PyCryptodome is a fork of PyCrypto. It brings the following enhancements
with respect to the last official version of PyCrypto (2.6.1):

* Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB)
* Accelerated AES on Intel platforms via AES-NI
* First class support for PyPy
* SHA-3 (including SHAKE XOFs) and BLAKE2 hash algorithms
* Salsa20 and ChaCha20 stream ciphers
* scrypt and HKDF
* Deterministic DSA
* Password-protected PKCS#8 key containers
* Shamir's Secret Sharing scheme
* Random numbers get sourced directly from the OS (and not from a CSPRNG in userspace)
* Simplified install process, including better support for Windows
* Cleaner RSA and DSA key generation (largely based on FIPS 186-4)
* Major clean ups and simplification of the code base

For more information, see the `homepage`_.

.. _`homepage`: http://www.pycryptodome.org