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.
Installation¶
Used next development environment
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
├── py.typed
├── vernam/
│ ├── decode.py
│ ├── encode.py
│ └── __init__.py
└── vigenere/
├── decode.py
├── encode.py
├── __init__.py
├── key_generator.py
└── lookup_table.py
7 directories, 23 files
Copyright and licence¶
Copyright (C) 2021 - 2024 by electux.github.io/codecipher
codecipher is free software; you can redistribute it and/or modify it under the same terms as Python itself, either Python version 3.x or, at your option, any later version of Python 3 you may have available.
Lets help and support PSF.