Metadata-Version: 1.0
Name: pyAesCrypt
Version: 0.1.1
Summary: Encrypt and decrypt files in AES Crypt format (version 2)
Home-page: https://pypi.python.org/pypi/pyAesCrypt/
Author: Marco Bellaccini
Author-email: marco.bellaccini[at!]gmail.com
License: Apache License 2.0
Description: pyAesCrypt
        ===============
        
        About pyAesCrypt
        --------------------------
        pyAesCrypt is a Python 3 file-encryption script that uses AES256-CBC to encrypt/decrypt files.
        
        pyAesCrypt is compatible with the `AES Crypt`_ `file format`_ (version 2).
        
        The script is Free Software, released under the `Apache License, Version 2.0`_.
        
        pyAesCrypt is brought to you by Marco Bellaccini - marco.bellaccini(at!)gmail.com.
         
        IMPORTANT SECURITY NOTE: version 2 of the AES Crypt file format does not authenticate the "file size modulo 16" byte. This implies that an attacker  
        with write access to the encrypted file may alter the corresponding plaintext file size by up to 15 bytes.
        
        NOTE: there is no low-level memory management in Python, hence it is not possible to wipe memory areas were sensitive information was stored.
        
        Usage examples
        ---------------
        Encrypt file test.txt in test.txt.aes:
        
        	pyAesCrypt -e test.txt
        
        Decrypt file test.txt.aes in test.txt:
        
        	pyAesCrypt -d test.txt.aes
        	
        Encrypt file test.txt in test2.txt.aes:
        
        	pyAesCrypt -e test.txt -o test2.txt.aes
        
        Decrypt file test.txt.aes in test2.txt:
        
        	pyAesCrypt -d test.txt.aes -o test2.txt
        
        .. _AES Crypt: https://www.aescrypt.com
        .. _file format: https://www.aescrypt.com/aes_file_format.html
        .. _Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
Keywords: AES Crypt encrypt decrypt
Platform: UNKNOWN
