Metadata-Version: 1.1
Name: Simple-AES-Cipher
Version: 1.0.6
Summary: Pycrypto based Simple And Easy Cipher on AES
Home-page: https://github.com/teitei-tk/Simple-AES-Cipher
Author: teitei-tk
Author-email: teitei.tk@gmail.com
License: MIT
Download-URL: https://github.com/teitei-tk/Simple-AES-Cipher/archive/master.tar.gz
Description: Simple-AES-Cipher
        =================
        
        Pycrypto based Simple And Easy AES Cipher
        
        Dependencies
        ~~~~~~~~~~~~
        
        -  Python 2.7 or later
        -  Pycrypto 2.6.1 or later
        
        Install
        ~~~~~~~
        
        .. code:: bash
        
            $ pip install Simple-AES-Cipher
        
        Usage
        ~~~~~
        
        .. code:: python
        
            from simple_aes_cipher import AESCipher, generate_secret_key
        
            pass_phrase = "hogefuga"
            secret_key = generate_secret_key(pass_phrase)
        
            # generate cipher
            cipher = AESCipher(secret_key)
        
            raw_text = "abcdefg"
            encrypt_text = cipher.encrypt(raw_text)
            assert raw_text != encrypt_text
        
            decrypt_text = cipher.decrypt(encrypt_text)
            assert encrypt_text != decrypt_text
            assert decrypt_text == raw_text
        
        LICENSE
        -------
        
        -  MIT
        
Keywords: cipher,aes
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
