The Caesar Cipher was a way of coding correspondence used by Julius Caesar. Encryption involves swapping each unencrypted letter with the letter shifted N positions left. When the range is exceeded, the alphabet is wrapped around. Write a function implementing the variation of the Caesar cypher, which assumes that subsequent shifts are the successive numbers of your album number (ignore letters). When the numbers from the album number run out, start from the beginning. The function should have two arguments: unencrypted string and album number, the function should return an encrypted string. Use the Latin alphabet, only lowercase letters. Spaces should remain unencrypted. For example in the case of N=3, the letter 'e' is replaced with 'b', and letter 'c' is replaced with 'z'

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter10: Classes And Data Abstraction
Section: Chapter Questions
Problem 19PE
icon
Related questions
Question

C language

The Caesar Cipher was a way of coding correspondence used by
Julius Caesar. Encryption involves swapping each unencrypted
letter with the letter shifted N positions left. When the range is
exceeded, the alphabet is wrapped around. Write a function
implementing the variation of the Caesar cypher, which assumes
that subsequent shifts are the successive numbers of your album
number (ignore letters). When the numbers from the album
number run out, start from the beginning. The function should have
two arguments: unencrypted string and album number, the
function should return an encrypted string. Use the Latin alphabet,
only lowercase letters. Spaces should remain unencrypted.
For example in the case of N=3, the letter 'e' is replaced with 'b', and
letter 'c' is replaced with 'z'
Transcribed Image Text:The Caesar Cipher was a way of coding correspondence used by Julius Caesar. Encryption involves swapping each unencrypted letter with the letter shifted N positions left. When the range is exceeded, the alphabet is wrapped around. Write a function implementing the variation of the Caesar cypher, which assumes that subsequent shifts are the successive numbers of your album number (ignore letters). When the numbers from the album number run out, start from the beginning. The function should have two arguments: unencrypted string and album number, the function should return an encrypted string. Use the Latin alphabet, only lowercase letters. Spaces should remain unencrypted. For example in the case of N=3, the letter 'e' is replaced with 'b', and letter 'c' is replaced with 'z'
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Public key encryption
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning