Skip to main content

A caesar crypt package

Project description

Python build & test

Project Description

Our project is a Caesar cipher package intended to help encrypt messages for users.

Documentation

Functions

caesar_encrypt(text, shift)

Given given text of alphanumerical characters, return a Caesar cipher with a specified shift amount. Shift must be positive number

:param text: The input string to encrypt.
:param shift: The number of positions to shift each character.
:return: The encrypted string.

caesar_decrypt(text, shift)

Given given Caeser cipher of alphanumerical characters, return unencrypted message if you have the original shift amount. Shift must be a positive number.
   
:param text: The input string to decrypt.
:param shift: The number of positions the characters were shifted to encrypt.
:return: The decrypted string.

brute_force_decrypt(encrypted_text)

Possibly decrypts alphanumeric Caesar cipher by going through all of the possible shift amounts. Return every possible shift amount

:param encrypted_text: The encrypted message to decrypt.
:return: A dictionary of all possible shifts and their corresponding decrypted messages.

verify_encryption_decryption(original_text, decrypted_text):

Verifies that the original plaintext matches the decrypted text,

indicating the encryption and decryption processes are inverses of each other.

:param original_text: The original plaintext before encryption.
:param decrypted_text: The text after being encrypted and then decrypted.
:return: True if the original and decrypted texts match, False otherwise.

Installation

To install, just use pip to install from PyPI:

pip install nyuCaesarCrypt==0.1.11

To import the code, here's the basic program we created with it: main.py

If you'd like to contribute to our project you'll likely need to prepare a few more things:

Virtual environment

You can think of a virtual environment as an independent, smaller computer inside your computer. Any changes to the virtual environment will be isolated, such as installing dependencies. Our package includes any dependencies in the requirements.txt file, so you can install dependencies quickly using the command shell.

To install pipenv: pip install pipenv

To run your virtual environment: pipenv shell

To install the dependencies: pip install pytest build twine or pip install -r requirements.txt

Testing

We've also included some unit tests as well. Simply run the following command in the command shell: python -m pytest or python3 -m pytest

These are basic unit tests, but they should tell you if something is wrong with your package.

Usage

Upon installation, just call ccrypt the program from the command line: python -m nyuCaesarCrypt or python 3 nyuCaesarCrypt

Once the program is called, first type and enter whether you would like to (e)ncrypt, (d)ecrypt, or (b)rute-force (note that only an encryption up to 26 is allowed).

If encrypt, then simply enter the text you would like to encrypt as the first parameter and the amount you'd like each character shifted as the second parameter. The program will then output the Caesar cipher.

If decrypt, then simply enter the text you would like to know as the first parameter and the amount you know each character shifted as the second parameter. The program will then output the original text. Make sure you remember the shift for any encrypted message you create.

If brute-force, then the program will iterate through all of the possible shifts and output all of the results.

Contributors

PyPI page

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

nyuCaesarCrypt-0.1.11.tar.gz (17.0 kB view details)

Uploaded Source

Built Distribution

nyuCaesarCrypt-0.1.11-py3-none-any.whl (17.4 kB view details)

Uploaded Python 3

File details

Details for the file nyuCaesarCrypt-0.1.11.tar.gz.

File metadata

  • Download URL: nyuCaesarCrypt-0.1.11.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.7

File hashes

Hashes for nyuCaesarCrypt-0.1.11.tar.gz
Algorithm Hash digest
SHA256 850aeb3eddeb0b86011ce8dcec7e2ccf5d442278426d17cab2699989c2e8edb6
MD5 cc0c0454171e473082e6edda549ecae4
BLAKE2b-256 e7aff0a5b51a6b18feae0c53ba2634fd26b15b21bc09eaa3c3af393704c96b6f

See more details on using hashes here.

File details

Details for the file nyuCaesarCrypt-0.1.11-py3-none-any.whl.

File metadata

File hashes

Hashes for nyuCaesarCrypt-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 8ea891a39c64eea01081e6a7a4ed75ae622554b8f26b12ed7445359adaa9b83e
MD5 98982bc697828e0237f78eda9f0b8f07
BLAKE2b-256 6b0f59dab12238b9b991eed3bf8e277e5489a4b44c0c632a0829cbeafd08f53d

See more details on using hashes here.

Supported by

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