Metadata-Version: 1.1
Name: dcoder
Version: 0.0.3
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: This is a module for decoding/encoding text in various ciphers.
        
        Usage:
        Current commands available are:
        
        Encoders:-
        
        text2bin(text)
        text2oct(text)
        text2hex(text)
        text2atbash(text)
        text2caesar(text, shift)
        text2railfence(text, key=3)
        
        Decoders:-
        
        bin2text(binary_text)
        oct2text(oct_text)
        hex2text(hex_text)
        atbash2text(encrypted_text)
        caesar2text(encrypted_text, shift)
        caesarBruteforce(encrypted_text)
        railfence2text(cipher, key=3)
        reverse(text)
        
        CHANGE LOG
        
        ==========
        
        0.0.1 (23/01/2021)
        -------------------
        - Inititial Release
        
        0.0.2 (24/01/2021)
        -------------------
        - Added functions for encoding/decoding the RailFence/Zig-Zag cipher.
        
        0.0.3 (24/01/2021)
        -------------------
        - Added functions for encoding/decoding text in octal.
        
Keywords: decoder,encoder,ciphers
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
