Metadata-Version: 1.1
Name: py-encryption
Version: 0.1.1
Summary: Simple Encryption in Python.
Home-page: https://github.com/veridu/py-encryption
Author: Veridu Ltd
Author-email: contact@veridu.com
License: MIT
Description: py-encryption
        =============
        
        Simple Encryption in Python (ported from https://github.com/defuse/php-encryption).
        
        This is a class for doing symmetric encryption in Python.
        
        Implementation
        --------------
        
        Messages are encrypted with AES-128 in CBC mode and are authenticated with
        HMAC-SHA256 (Encrypt-then-Mac). PKCS7 padding is used to pad the message to
        a multiple of the block size. HKDF is used to split the user-provided key into
        two keys: one for encryption, and the other for authentication. It is
        implemented using the `Crypto` and `hmac` modules.
        
        Authors
        ---------
        
        This port was based on the library authored by Taylor Hornby and Scott Arciszewski.
        
Keywords: security,encryption,AES,cipher,cryptography,symmetric key cryptography,crypto
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
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.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
