Retired

Cryptography - Caesar cipher (retired)

Description:

The Caesar cipher is the simplest form and most widely known form of encryption. It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter some fixed number of positions down the alphabet.

Develop the algorithm to encrypt strings into Caesar Cipher form containing both a string and the number of letters it has to shift by.

Use this to help you learn how to implement a Casear Cipher.

https://en.wikipedia.org/wiki/Caesar_cipher

Results will look something like this.

encryptcc("god",1) --> "hpe"
encryptcc("dog",2) --> "fqi"
Fundamentals
Ciphers
Algorithms
Cryptography
Logic
Security
Strings
Data Types

Stats:

CreatedMay 24, 2016
Warriors Trained134
Total Skips0
Total Code Submissions356
Total Times Completed33
JavaScript Completions33
Total Stars3
% of votes with a positive feedback rating61% of 18
Total "Very Satisfied" Votes10
Total "Somewhat Satisfied" Votes2
Total "Not Satisfied" Votes6
Total Rank Assessments14
Average Assessed Rank
6 kyu
Highest Assessed Rank
6 kyu
Lowest Assessed Rank
8 kyu
Ad
Contributors
  • Edozie101 Avatar
Ad