Developer-Students-Club-MAIT / cool_code_snippets

This is a repository for adding not so popular/known but very useful and cool code snippets in any language or framework that the community might benefit from
MIT License
12 stars 16 forks source link

Added Caesar Cipher python implementation #11

Closed MPL0Y closed 4 years ago

MPL0Y commented 4 years ago

Caesar Cipher Python

Caesar Cipher is one of the oldest encryption techniques. It is a basic cryptography cipher method used to cipher a plaintext by merely shifting the characters based on the shift value (or key) provided.

Fixes # (issue)

Type of change

Please delete options that are not relevant.

Checklist:

kaustubhgupta commented 4 years ago

Looks like it's taken from here: https://www.tutorialspoint.com/cryptography_with_python/cryptography_with_python_caesar_cipher.htm

MPL0Y commented 4 years ago

I had this code saved on my machine. Didn't realise it could have been sourced. Sorry for the trouble. I'll be working on a command-line version of this.