Skip to main content

Python Cipher Utilities

Project description

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 package checker GitHub issues open GitHub contributors

Table of Contents

Installation

Used next development environment

debian linux os

codecipher python3 build

Currently there are three ways to install package

  • Install process based on using pip mechanism
  • Install process based on build mechanism
  • Install process based on setup.py mechanism
  • Install process based on docker mechanism
Install using pip

codecipher is located at pypi.org.

You can install by using pip

# python3
pip3 install codecipher
Install using build

Navigate to release page download and extract release archive.

To install codecipher, run

tar xvzf codecipher-x.y.z.tar.gz
cd codecipher-x.y.z
# python3
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py 
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
pip3 install -r requirements.txt
python3 -m build --no-isolation --wheel
pip3 install codecipher-x.y.z-py3-none-any.whl
rm -f get-pip.py
Install using py setup

Navigate to release page download and extract release archive.

To install codecipher, locate and run setup.py with arguments

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

You can use Dockerfile to create image/container.

Dependencies

codecipher requires other modules and libraries (Python 3.x)

  • None

Usage

from codecipher.a1z52n62.engine import A1Z52N62
from codecipher.atbs.engine import ATBS
from codecipher.b64.engine import B64
from codecipher.caesar.engine import Caesar
from codecipher.vigenere.engine import Vigenere
from codecipher.vernam.engine import Vernam

print("A1z52N62 cipher")
cipher = A1Z52N62()
data = "More Human Than Human01 Is Our Motto"
# encoding data
encode_data = cipher.encode(data)
# encoded data
print(encode_data)
# decoding data
decode_data = cipher.decode(encode_data)
# decoded data
print(decode_data)
print(50*'=')

print("ATBS cipher")
cipher = ATBS()
data = "More Human Than Human01 Is Our Motto"
# encoding data
encode_data = cipher.encode(data)
# encoded data
print(encode_data)
# decoding data
decode_data = cipher.decode(encode_data)
# decoded data
print(decode_data)
print(50*'=')

print("B64 cipher")
cipher = B64()
data = "More Human Than Human01 Is Our Motto"
# encoding data
encode_data = cipher.encode(data)
# encoded data
print(encode_data)
# decoding data
decode_data = cipher.decode(encode_data)
# decoded data
print(decode_data)
print(50*'=')

print("Caesar cipher")
cipher = Caesar()
data = "More Human Than Human01 Is Our Motto"
# encoding data
encode_data = cipher.encode(data)
# encoded data
print(encode_data)
# decoding data
decode_data = cipher.decode(encode_data)
# decoded data
print(decode_data)
print(50*'=')

print("Vigenere cipher")
cipher = Vigenere()
data = "More Human Than Human01 Is Our Motto"
# encoding data
encode_data = cipher.encode(data)
# encoded data
print(encode_data)
# decoding data
decode_data = cipher.decode(encode_data)
# decoded data
print(decode_data)
print(50*'=')

print("Vernam cipher")
cipher = Vernam()
data = "More Human Than Human01 Is Our Motto"
# encoding data
encode_data = cipher.encode(data)
# encoded data
print(encode_data)
# decoding data
decode_data = cipher.decode(encode_data)
# decoded data
print(decode_data)
print(50*'=')

Package structure

codecipher is based on OOP.

Package structure

    codecipher/
    ├── a1z52n62/
       ├── config.py
       ├── decode/
          ├── decode_algorithm.py
          ├── decoder.py
          └── __init__.py
       ├── encode/
          ├── encode_algorithm.py
          ├── encoder.py
          └── __init__.py
       ├── engine.py
       └── __init__.py
    ├── abstracts/
       ├── ialgorithm.py
       ├── icharacter_validator.py
       ├── icipher_engine.py
       ├── iconfig.py
       ├── idata_validator.py
       ├── idecoder.py
       ├── iencoder.py
       ├── __init__.py
       └── ivalidation_engine.py
    ├── atbs/
       ├── config.py
       ├── decode/
          ├── decode_algorithm.py
          ├── decoder.py
          └── __init__.py
       ├── encode/
          ├── encode_algorithm.py
          ├── encoder.py
          └── __init__.py
       ├── engine.py
       └── __init__.py
    ├── b64/
       ├── config.py
       ├── decode/
          ├── decode_algorithm.py
          ├── decoder.py
          └── __init__.py
       ├── encode/
          ├── encode_algorithm.py
          ├── encoder.py
          └── __init__.py
       ├── engine.py
       └── __init__.py
    ├── caesar/
       ├── config.py
       ├── decode/
          ├── decode_algorithm.py
          ├── decoder.py
          └── __init__.py
       ├── encode/
          ├── encode_algorithm.py
          ├── encoder.py
          └── __init__.py
       ├── engine.py
       └── __init__.py
    ├── __init__.py
    ├── py.typed
    ├── validation/
       ├── character_validator.py
       ├── data_validator.py
       ├── __init__.py
       └── validation_engine.py
    ├── vernam/
       ├── config.py
       ├── decode/
          ├── decode_algorithm.py
          ├── decoder.py
          └── __init__.py
       ├── encode/
          ├── encode_algorithm.py
          ├── encoder.py
          └── __init__.py
       ├── engine.py
       └── __init__.py
    └── vigenere/
        ├── config.py
        ├── decode/
           ├── decode_algorithm.py
           ├── decoder.py
           └── __init__.py
        ├── encode/
           ├── encode_algorithm.py
           ├── encoder.py
           └── __init__.py
        ├── engine.py
        └── __init__.py

    21 directories, 69 files

Code coverage

Name Stmts Miss Cover
codecipher/__init__.py 9 0 100%
codecipher/a1z52n62/__init__.py 9 0 100%
codecipher/a1z52n62/config.py 26 0 100%
codecipher/a1z52n62/decode/__init__.py 9 0 100%
codecipher/a1z52n62/decode/decode_algorithm.py 41 6 85%
codecipher/a1z52n62/decode/decoder.py 30 2 93%
codecipher/a1z52n62/encode/__init__.py 9 0 100%
codecipher/a1z52n62/encode/encode_algorithm.py 32 2 94%
codecipher/a1z52n62/encode/encoder.py 30 2 93%
codecipher/a1z52n62/engine.py 36 0 100%
codecipher/abstracts/__init__.py 9 0 100%
codecipher/abstracts/ialgorithm.py 16 1 94%
codecipher/abstracts/icharacter_validator.py 14 1 93%
codecipher/abstracts/icipher_engine.py 17 2 88%
codecipher/abstracts/iconfig.py 23 0 100%
codecipher/abstracts/idata_validator.py 14 1 93%
codecipher/abstracts/idecoder.py 10 2 80%
codecipher/abstracts/iencoder.py 10 2 80%
codecipher/abstracts/ivalidation_engine.py 18 2 89%
codecipher/atbs/__init__.py 9 0 100%
codecipher/atbs/config.py 26 0 100%
codecipher/atbs/decode/__init__.py 9 0 100%
codecipher/atbs/decode/decode_algorithm.py 28 3 89%
codecipher/atbs/decode/decoder.py 30 2 93%
codecipher/atbs/encode/__init__.py 9 0 100%
codecipher/atbs/encode/encode_algorithm.py 28 3 89%
codecipher/atbs/encode/encoder.py 30 2 93%
codecipher/atbs/engine.py 36 1 97%
codecipher/b64/__init__.py 9 0 100%
codecipher/b64/config.py 26 0 100%
codecipher/b64/decode/__init__.py 9 0 100%
codecipher/b64/decode/decode_algorithm.py 32 7 78%
codecipher/b64/decode/decoder.py 30 2 93%
codecipher/b64/encode/__init__.py 9 0 100%
codecipher/b64/encode/encode_algorithm.py 27 3 89%
codecipher/b64/encode/encoder.py 30 2 93%
codecipher/b64/engine.py 36 2 94%
codecipher/caesar/__init__.py 9 0 100%
codecipher/caesar/config.py 26 0 100%
codecipher/caesar/decode/__init__.py 9 0 100%
codecipher/caesar/decode/decode_algorithm.py 41 2 95%
codecipher/caesar/decode/decoder.py 30 2 93%
codecipher/caesar/encode/__init__.py 9 0 100%
codecipher/caesar/encode/encode_algorithm.py 41 2 95%
codecipher/caesar/encode/encoder.py 30 2 93%
codecipher/caesar/engine.py 36 2 94%
codecipher/validation/__init__.py 9 0 100%
codecipher/validation/character_validator.py 17 1 94%
codecipher/validation/data_validator.py 19 1 95%
codecipher/validation/validation_engine.py 24 4 83%
codecipher/vernam/__init__.py 9 0 100%
codecipher/vernam/config.py 26 0 100%
codecipher/vernam/decode/__init__.py 9 0 100%
codecipher/vernam/decode/decode_algorithm.py 44 5 89%
codecipher/vernam/decode/decoder.py 30 2 93%
codecipher/vernam/encode/__init__.py 9 0 100%
codecipher/vernam/encode/encode_algorithm.py 44 5 89%
codecipher/vernam/encode/encoder.py 30 2 93%
codecipher/vernam/engine.py 36 0 100%
codecipher/vigenere/__init__.py 9 0 100%
codecipher/vigenere/config.py 26 0 100%
codecipher/vigenere/decode/__init__.py 9 0 100%
codecipher/vigenere/decode/decode_algorithm.py 40 3 92%
codecipher/vigenere/decode/decoder.py 30 2 93%
codecipher/vigenere/encode/__init__.py 9 0 100%
codecipher/vigenere/encode/encode_algorithm.py 40 3 92%
codecipher/vigenere/encode/encoder.py 30 2 93%
codecipher/vigenere/engine.py 36 0 100%
Total 1541 90 94%

Docs

documentation status

More documentation and info at

Contributing

Contributing to codecipher

Copyright and Licence

License: GPL v3 License

Copyright (C) 2021 - 2026 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.

Python Software Foundation

Donate

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

codecipher-1.5.1.tar.gz (39.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

codecipher-1.5.1-py3-none-any.whl (102.8 kB view details)

Uploaded Python 3

File details

Details for the file codecipher-1.5.1.tar.gz.

File metadata

  • Download URL: codecipher-1.5.1.tar.gz
  • Upload date:
  • Size: 39.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.0 CPython/3.12.3

File hashes

Hashes for codecipher-1.5.1.tar.gz
Algorithm Hash digest
SHA256 a92b0bf90cbdbbe7a530f722af0cd99cc9f63a19995180b02c9d00d56caeaf02
MD5 865de05757493ffbe1ede89ca0c3f59c
BLAKE2b-256 84b34f15ccb7938a11602ad03103159b6371e55741c37ced901e29e750e9548f

See more details on using hashes here.

File details

Details for the file codecipher-1.5.1-py3-none-any.whl.

File metadata

  • Download URL: codecipher-1.5.1-py3-none-any.whl
  • Upload date:
  • Size: 102.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.0 CPython/3.12.3

File hashes

Hashes for codecipher-1.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7285c3d9d003b2d040667f5589536a82caab44550610f4c638d2d2d6c7177587
MD5 9cd2f6e4d529301a6c8b00c5238ca03e
BLAKE2b-256 225e0251020d66f6f13bc1b8253f0cb8b06a5f263de9c4cc87855829249d4cb0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page