Metadata-Version: 2.1
Name: encdecpy
Version: 0.0.5
Summary: Python Package to encode and decode strings using ciphers.
Home-page: https://github.com/IronVenom/encdecpy
Author: Atharva Kulkarni
Author-email: amk11@iitbbs.ac.in
License: UNKNOWN
Description: ## encdecpy
        Python package to encode and decode strings using ciphers.
        
        ### Installation
        
        ```
        $ pip install encdecpy
        ```
        
        ### Usage
        
        1. Base64 encoding-decoding: Parameter is a string. A string is returned.
        
        Do
        
        ```
        from encdecpy import base64
        ```
        
        * base64(string).encode() : To encode a string.
        * base64(string).decode() : To decode a string.
        
        2. Atbash encoding-decoding: Parameter is a string. A string is returned.
        
        Do 
        
        ```
        from encdecpy import atbash
        ```
        
        * atbash(string).encode() : To encode a string.
        * atbash(string).decode() : To decode a string.
        
        3. ROT13 encoding-decoding: Parameter is a string. A string is returned.
        
        Do 
        
        ```
        from encdecpy import rot13
        ```
        
        * rot13(string).encode() : To encode a string.
        * rot13(string).decode() : To decode a string.
        
        4. Caesar encoding-decoding: Parameters are a string and a key(integer) . A string is returned.
        
        Do 
        
        ```
        from encdecpy import caesar
        ```
        
        * caesar(string,key).encode() : To encode a string.
        * caesar(string,key).decode() : To decode a string.
Keywords: encode decode cryptography ciphers encryption decryption
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
