Metadata-Version: 2.1
Name: dcoder
Version: 0.1.1
Summary: A module that can decode/encode text in various ciphers.
Home-page: https://github.com/CodeWithSwastik/dcoder
Author: Swas.py
Author-email: cwswas.py@gmail.com
License: MIT
Description: ##dCoder 0.1.1
        
        This module provides various functions decoding/encoding text. It also has functions for encrypting or decrypting text in various ciphers.
        
        ## Installation
        
        You can install released versions of dcoder from the Python Package Index with pip or a similar tool:
        
        **Stable Release:** `pip install dcoder`<br>
        **Working Version:** `pip install git+https://github.com/CodeWithSwastik/dcoder.git`
        
        
        ## Usage:
        
        The current list of functions available are:
            
        Encoding: 
        ```python
        text2bin(text)
        text2oct(text)
        text2hex(text)
        text2ascii(text)
         ```
        Decoding:
         ```python
        bin2text(binary_text)
        oct2text(oct_text)
        hex2text(hex_text)
        ascii2text(ascii_text)
        ```
        Encryption:
         ```python
        text2atbash(text)
        text2caesar(text, shift = 3)
        text2railfence(text, key = 3)
        ```
        Decryption:
         ```python
        atbash2text(encrypted_text)
        caesar2text(encrypted_text, shift = 3)
        caesarBruteforce(encrypted_text)
        railfence2text(cipher, key = 3)
        ```
        
        Misc:
        ```python
        reverse(text)
        capitalLetterCipher(ciphertext)
        firstLetterCipher(ciphertext)
        ```
        
        CHANGE LOG
        ==========
        
        0.1.1 (25/01/2021)
        -------------------
        - Reorganized the code and added comments
        - Added 2 misc functions capitalLetterCipher() and firstLetterCipher()
        
        0.1.0 (24/01/2021)
        -------------------
        - Fixed Bugs
        - Added functions for encoding/decoding text in ascii.
        
        0.0.3 (24/01/2021)
        -------------------
        - Added functions for encoding/decoding text in octal.
        
        0.0.2 (24/01/2021)
        -------------------
        - Added functions for encrypting/encrypting text in the RailFence/Zig-Zag cipher.
        
        0.0.1 (23/01/2021)
        -------------------
        - Inititial Release
        
        
        
        
        
        
        
Keywords: decoder,encoder,ciphers
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
