Metadata-Version: 1.1
Name: su.aes
Version: 0.1.2
Summary: A simple encrypt/decrypt lib based on AES.
Home-page: https://github.com/zhaolins/su.aes
Author: Zhaolin Su
Author-email: z@suho.me
License: MIT
Description: # su.aes
        
        A simple encrypt/decrypt lib based on AES
        
        
        ### Dependencies
        * Python 3.6 or later
        
        ### Install
        ```bash
        $ pip3 install su.aes
        ```
        
        ### Usage
        ```python
        from su.aes import encrypt, decrypt
        
        input_text = "hogefuga"
        secret_key = "my_sec_key"
        
        # encrypt
        encrypted = encrypt(secret_key, input_text)
        decrypted = decrypt(secret_key, encrypted)
        assert decrypted == input_text
        ```
        
        
        ### Console
        ```bash
        # test for input string
        $ su-aes INPUT_STR -t -p
        
        # file test
        $ su-aes INPUT_FILE_PATH -f -t -o OUTPUT_FILE_PATH
        ```
        
Keywords: development
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
