https://github.com/imdarshangk/caesarcipher-python
A simple Python program that implements the Caesar cipher for encryption and decryption of text. This project allows users to input a message and shift key to either encrypt or decrypt the message. It's a basic yet effective example of classical cryptography.
https://github.com/imdarshangk/caesarcipher-python
caesar caesar-cipher python pythonproject
Last synced: 7 months ago
JSON representation
A simple Python program that implements the Caesar cipher for encryption and decryption of text. This project allows users to input a message and shift key to either encrypt or decrypt the message. It's a basic yet effective example of classical cryptography.
- Host: GitHub
- URL: https://github.com/imdarshangk/caesarcipher-python
- Owner: imDarshanGK
- Created: 2024-08-01T00:53:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-13T17:39:38.000Z (10 months ago)
- Last Synced: 2024-12-13T18:34:02.058Z (10 months ago)
- Topics: caesar, caesar-cipher, python, pythonproject
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Caesar Cipher in Python 🔐
## Overview
This repository contains a Python implementation of the Caesar Cipher encryption algorithm. The Caesar Cipher is a substitution cipher where each letter in the plaintext is shifted by a fixed number of positions in the alphabet.## Features
- Encrypts and decrypts text using a Caesar Cipher.
- Easy to use with user input.
- Simple Python implementation for educational purposes.