Metadata-Version: 2.1
Name: JCryptor
Version: 0.1.30
Summary: JCryptor: The Encryptor and Decryptor Module
Home-page: https://github.com/ScripNewbie/JCryptor
Author: CodeBoard
Author-email: jdmaster888@gmail.com
License: UNKNOWN
Keywords: encrypt,decrypt,jcryptor
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENCE

# JCryptor

JCryptor is used to Encrypt and Decrypt.

  Encrypting:

    cryp = JCryptor()
    original = "Hello World"
    >> Hello World
    encrypt = cryp.encrypt_text(original)
    >> G&uu) O)$u<
   
  Decrypting:

    decrypt = cryp.decrypt_text(encrypt)
    >> Hello World
 
 # How to install?
 
 - pip install JCryptor
 - pip3 install JCryptor


