https://github.com/frankiefab100/caesar-cipher-cryptography
Caesar cipher - Task by Web3Bridge
https://github.com/frankiefab100/caesar-cipher-cryptography
caesar-cipher cipher cryptography decode decryption encode encryption
Last synced: 11 months ago
JSON representation
Caesar cipher - Task by Web3Bridge
- Host: GitHub
- URL: https://github.com/frankiefab100/caesar-cipher-cryptography
- Owner: frankiefab100
- Created: 2021-12-21T16:18:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-21T16:21:56.000Z (over 4 years ago)
- Last Synced: 2025-05-20T05:06:55.360Z (about 1 year ago)
- Topics: caesar-cipher, cipher, cryptography, decode, decryption, encode, encryption
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Caesar-Cipher-Cryptography
Caesar cipher is a type of substitution cipher in which each letter in the plaintext is shifted to a certain number of places down the alphabet. For example, with a shift of 1, A would be replaced by B, B would become C, and so on. While a shift of 2, A would be C, B would become D, and so on. How it works: The program receives two Input arguments: - A String of letters as Text. - An Integer between 0-25 denoting the required shift. And returns the encrypted message.