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
Release history Release notifications | RSS feed
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 details)
Built Distribution
File details
Details for the file CaesarsCipher-1.0.0.tar.gz
.
File metadata
- Download URL: CaesarsCipher-1.0.0.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.0 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
73ae29b5f5f5e53689e3c430aedb7b29cb897293078f345b89e199c8a93e6b2b
|
|
MD5 |
4c9e17bea2577bc822d109d57b617fac
|
|
BLAKE2b-256 |
b2c78b4d92d2affd55d80654ed751012f2247ccc670733803b4e4bc3b7d13e26
|
File details
Details for the file CaesarsCipher-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: CaesarsCipher-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.0 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9bce999ce58451762a2483b99e534c8d8c7ce933ce995ee0efda64dee9fc520c
|
|
MD5 |
e902aad5bed680ebf00148708087b6e2
|
|
BLAKE2b-256 |
b9d75732fa4600200bcbd89ee395bb64c42fe65a1d38d287d2f50a5a99925427
|