Metadata-Version: 2.1
Name: caesar-cipher-test
Version: 0.0.2
Summary: A caesar cipher app and simple python calculator
Home-page: UNKNOWN
Author: Berhanu Dagnew
Author-email: babipanda.learn@gmail.com
License: MIT
Description: # CAESAR CIPHER
        
        Caesar cipher is a Python library for dealing with encode and decode.
        
        ## Algorithm of Caesar Cipher
        The algorithm of Caesar cipher holds the following features −
        
        1.Caesar Cipher Technique is the simple and easy method of encryption technique.
        
        2.It is simple type of substitution cipher.
        
        3.Each letter of plain text is replaced by a letter with some fixed number of positions down with alphabet.
        
        The following diagram depicts the working of Caesar cipher algorithm implementation
        ![image](https://www.pythonpool.com/wp-content/uploads/2021/05/image-39-1024x788.png) 
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.
        
        ```bash
        pip install caesar_cipher coming soon
        ```
        
        ## Usage
        
        ```python
        import caesar_cipher coming soon
        
        # encoded
        caesar.encode.('hello')
        # returns 'mjqqt'
        
        # decoded
        caesar.decode('mjqqt')
        #returns 'hello'
        
        
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://github.com/babipanda/caesar_cipher/blob/main/LICENSE)
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
