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
Similar Kata:
Stats:
Created | May 24, 2016 |
Warriors Trained | 134 |
Total Skips | 0 |
Total Code Submissions | 356 |
Total Times Completed | 33 |
JavaScript Completions | 33 |
Total Stars | 3 |
% of votes with a positive feedback rating | 61% of 18 |
Total "Very Satisfied" Votes | 10 |
Total "Somewhat Satisfied" Votes | 2 |
Total "Not Satisfied" Votes | 6 |
Total Rank Assessments | 14 |
Average Assessed Rank | 6 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 8 kyu |