Skip to main content

This is a simple python package for encrypting and decrypting text in Caesar’s Cipher.

Project description

CaesarsCipher Documentation

Introduction

This is a simple python package built to Encrypt and Decrypt text using the Caesar's Cipher.

Installation

Install the CaesarsCipher package using PIP

pip install CaesarsCipher

Usage

# Import The Caesar Class From The CaesarsCipher Module
from CaesarsCipher import Caesar

# Encrypt Your Text Using Caesar.encrypt('your_text_here',shift_value)
print(Caesar.encrypt("Aaron Fritz",10))

# If You Don't Specify Shift Value In The Function For Encryption, The Default Shift Will Be 10
print(Caesar.encrypt("Aaron Fritz",10))

# Decrypt Your Text Using Caesar.decrypt('your_text_here',shift_value)
print(Caesar.decrypt("Kkbyx Pbsdj",10))

# If You Dont Know The Shift Value, Decrypt Your Text Using Caesar.decrypt('your_text_here') for Brute Force Decryption
print(Caesar.decrypt("Kkbyx Pbsdj"))

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

CaesarsCipher-1.0.0.tar.gz (2.3 kB view hashes)

Uploaded Source

Built Distribution

CaesarsCipher-1.0.0-py3-none-any.whl (3.1 kB view hashes)

Uploaded Python 3

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