GDSC-AUM / OpenOcto-DSA

Data Structures and Algorithms implemented in C++
MIT License
5 stars 24 forks source link

[PROG] Caesar Cipher #26

Closed bhantsi closed 2 years ago

bhantsi commented 2 years ago

Program Description This program uses Caesar Cipher Algorithm to encrypt/decrypt plain text. It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter with a fixed number of positions down the alphabet.

Additional context INPUT: line 1: key (key) line 2: message (s)

OUTPUT: line 1: Encrypted message (t)

Checklist

bhantsi commented 2 years ago

Assign it to me, already working on it

unshDee commented 2 years ago

Sure

bhantsi commented 2 years ago

@unshDee check it out #32