CODECipher

codecipher is package for cipher utilities.

Developed in python code.

The README is used to introduce the modules and provide instructions on how to install the modules, any machine dependencies it may have and any other information that should be provided before the modules are installed.

codecipher python checker codecipher python package github issues documentation status github contributors

Installation

Used next development environment

codecipher python3 build

Navigate to release page download and extract release archive.

To install codecipher type the following

tar xvzf codecipher-x.y.z.tar.gz
cd codecipher-x.y.z/
# pyton3
pip3 install -r requirements.txt
python3 -m build -s --no-isolation --wheel
pip3 install codecipher-x.y.z-py3-none-any.whl

or old fashioned way

tar xvzf codecipher-x.y.z.tar.gz
cd codecipher-x.y.z/
# pyton3
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_egg_info

You can use Docker to create image/container, or You can use pip to install

# python3
pip3 install codecipher

Dependencies

codecipher requires next modules and libraries

  • None

Package structure

codecipher is based on OOP.

Package structure

codecipher/
    ├── a1z52n62/
       ├── decode.py
       ├── encode.py
       └── __init__.py
    ├── atbs/
       ├── decode.py
       ├── encode.py
       ├── __init__.py
       └── lookup_table.py
    ├── b64/
       ├── decode.py
       ├── encode.py
       └── __init__.py
    ├── caesar/
       ├── decode.py
       ├── encode.py
       └── __init__.py
    ├── __init__.py
    ├── vernam/
       ├── decode.py
       ├── encode.py
       └── __init__.py
    └── vigenere/
        ├── decode.py
        ├── encode.py
        ├── __init__.py
        ├── key_generator.py
        └── lookup_table.py

Indices and tables