Metadata-Version: 2.1
Name: ckrett
Version: 1.0.0
Summary: a basic ciphering/deciphering tool
Home-page: https://github.com/sasivatsal7122/ckret-library-pypi
Author: Sasi Vatsal
Author-email: sasivatsal7122@gmail.com
License: MIT
Description: <h1 align="center">ckret-python-library</h1>
        This is an useful python library for people who care about privacy, this library is useful to cipher and decipher text using 4 simple functions.
        
        ---------------------------------------------------------------------------------------------
        Available operations in ckret library:
        
        1.syph() -----> cypherises the user input text\
        2.dsyph() -----> decypherises the user input text to plain text\
        3.ksyph() ------> cypherises the user input text with unique 6 digit security key\
        4.kdysph() -------> decypherises the text only when 6 digit security key is provided correctly\
        
        ---------------------------------------------------------------------------------------------
        
        usecase example:
        ```python
        import ckret
        x=input()
        msg=ckret.syph(x)
        print(msg)
        ```
        u can change syph(),dsyph(),ksyph(),kdsyph() respectively depeding on your operation
        
        note:\
        text ciphered using syph() can only be deciphered strictly by dsyph()\
        text ciphered using ksyph() can only be deciphered strictly by kdsyph()
        
        note-2:\
        in version 1.0.0 there is no support for characters --> @,#,$,%,^,&,*,(,),! , kindly avoid using them in your sentence.\
        support for these charcaters will be added in next version (1.5.0)
        
        happy ciphering, peace✌.
        
        
Keywords: ckrett
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
