Metadata-Version: 2.1
Name: aeshandler
Version: 0.1
Summary: AESHandler Script
Home-page: UNKNOWN
Author: m-benja
Author-email: <m.benja@protonmail.ch>
License: UNKNOWN
Description: # AESHandler
        AESHandler is a package that makes AES encryption and decryption easy.
        
        # Usage
        ```python
        import aeshandler
        
        # The aeshandler module comes with a key_from_password() method in the AESHandler class.
        # This method takes in a password, and runs a KDF function to create a key.
        password = b'Password1234!'
        crypto_tuple = aeshandler.AESHandler.key_from_password(password) # Default KDF is Bcrypt
        '''
        OUTPUT: (b'password1234!', b'he0bB3t4OZtAqjQlv77QOq1LHg6wSeD9rNskEiAV5LsMYGDXS8rBkEPLDIeQNshf', b'\x14\xe8\xf0\xcf\xf1\x16\x9d\xb6J\x9b\xc0\xfe\xed\xd7\xe9\xd0\x82\x10scip\xea|L&\x81\xacH\xa8O\x0e')
        First element is the password, second element is the salt used with the KDF, third element is the derived key.
        '''
        crypto_key = crypto_tuple[-1] # b'\x14\xe8\xf0\xcf\xf1\x16\x9d\xb6J\x9b\xc0\xfe\xed\xd7\xe9\xd0\x82\x10scip\xea|L&\x81\xacH\xa8O\x0e'
        
        '''
        AESHandler supports all AES modes. Such as CBC, CFB, XTS, and so on.
        Using CBC in this instance.
        This may require the padding=True argument for PKCS7 padding.
        use_encoding=True returns ciphertexts in base64 format.
        '''
        a = aeshandler.AESHandler(crypto_key, aeshandler.modes.CBC, padding=True, use_encoding=True)
        ciphertext = a.encrypt('Hello!') # M4ENqqe0m0ys4a7e1fnWHtJD+DbGNY5ckfbJBShxkJ0=
        print(ciphertext)
        print(a.decrypt(ciphertext)) # b'Hello!'
        ```
        
Keywords: python,cryptography
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
