Metadata-Version: 2.1
Name: encrypter
Version: 0.1
Summary: Plain text encrypter designed to handle ASCII characters based on a randomly generated constant
Home-page: https://github.com/Tester86/encrypter
Author: Tester86
Author-email: tester86t@gmail.com
License: MIT
Download-URL: https://github.com/Tester86/passfactory/encrypter.py/v_01.tar.gz
Description: # Encrypter
        
        Encrypter is a module designed to convert characters into their corresponding numerical value, change it according to a randomly generated constant and finally turn them into characters again
        
        ## Installation
        
        ```python
        pip install encrypter
        ```
        ## Usage
        
        ```python
        import encrypter as enc
        
        # create the Encrypter Object
        
        encrypter_obj = enc.Encrypter()
        
        text = "hello world"
        
        # encrypt the message
        
        ecrypted_text = encrypter_obj.encrypt(text)
        
        #decrypt the message
        
        decrypted_text = encrypter_obj.decrypt(encrypted_text)
        
        ```
Keywords: ENCRYPT,ENCRYPTER,DECRYPT,DECRYPTER,CYPHER,CHARACTER,ASCII
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
