Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.28 KB

CA3SAR.Encrypt

##CAESAR.ENCRYPT## "Secure your messages with the classic Caesar cipher encryption and decryption tool."!!

Caesar Cipher Encryption/Decryption Tool

Overview

This is a simple Python program that implements the Caesar cipher algorithm for encrypting and decrypting text. The program allows users to input text and a shift value to perform the encryption and decryption processes.

Features

  • Text Encryption: Encrypts input text by shifting letters by a specified number of positions in the alphabet.
  • Text Decryption: Decrypts the encrypted text back to its original form using the same shift value.
  • User Input: Allows users to enter text and choose between encryption and decryption.

How It Works

  1. The user is prompted to choose between encrypting or decrypting text.
  2. The user inputs the text and the shift value (1-25).
  3. The program processes the input and displays the encrypted or decrypted text.

Installation

  1. Clone the repository:
    https://github.com/KhushXploit/CA3SAR.Encrypt.git
  2. python caesar_encrypt_decrypt.py

Example Usage To encrypt the text "Hello, World!" with a shift of 3, the output will be "Khoor, Zruog!". To decrypt "Khoor, Zruog!" with a shift of 3, the output will return to "Hello, World!".