Problem 2 (Cipher module) • Create a Python file named cipher_module.py with functions to encode and decode string inputs using the basic Caesar cipher (see here for more information https://en.wikipedia.org/wiki/Caesar_cipher). This cipher is a basic encryption technique that supports encoding and decoding operations on strings. • The encoding operation replaces each character in a string with another character some fixed number (shift) of positions down the ASCII table. The string can be encoded using any characters on the ASCII table and no need to use the circular list (where ‘Z’ is followed by ‘A’) image shown below. Your module must have a function named encode() that takes a string and an integer shift (can be positive or negative) as parameters and returns the encoded string using the shift value. This module must     Page 3 of 4 also have a second function name decode() that takes an encoded string and an integer shift as parameters and returns the decoded string. The decoding operation is the reverse of encoding. • Import your cipher_module module in another Python program named p2.py and use the functions provided by the module to test the encoding/decoding operations on some sample strings using different shift values. • Submit both cipher_module and p2.py. • Hint: use built-in ord() function to convert a character to ascii integer and chr() function to convert the ascii to a character. Sample run: cipher_module.encode(abde, 2) returns cdfg cipher_module.decode(cdfg, 2) returns abde cipher_module.encode(eebcd, 3) returns hhefg cipher_module.decode(hhefg, 3) returns eebcd cipher_module.encode(hhefg, -2) returns ffcde cipher_module.decode(ffcde, -2) returns hhefg

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Problem 2 (Cipher module)
• Create a Python file named cipher_module.py with functions to encode and decode
string inputs using the basic Caesar cipher (see here for more information
https://en.wikipedia.org/wiki/Caesar_cipher). This cipher is a basic encryption
technique that supports encoding and decoding operations on strings.
• The encoding operation replaces each character in a string with another character
some fixed number (shift) of positions down the ASCII table. The string can be
encoded using any characters on the ASCII table and no need to use the circular list
(where ‘Z’ is followed by ‘A’) image shown below. Your module must have a function
named encode() that takes a string and an integer shift (can be positive or negative)
as parameters and returns the encoded string using the shift value. This module must
 
 
Page 3 of 4
also have a second function name decode() that takes an encoded string and an
integer shift as parameters and returns the decoded string. The decoding operation
is the reverse of encoding.
• Import your cipher_module module in another Python program named p2.py and
use the functions provided by the module to test the encoding/decoding operations
on some sample strings using different shift values.
• Submit both cipher_module and p2.py.
• Hint: use built-in ord() function to convert a character to ascii integer and chr()
function to convert the ascii to a character.
Sample run:
cipher_module.encode(abde, 2) returns cdfg
cipher_module.decode(cdfg, 2) returns abde
cipher_module.encode(eebcd, 3) returns hhefg
cipher_module.decode(hhefg, 3) returns eebcd
cipher_module.encode(hhefg, -2) returns ffcde
cipher_module.decode(ffcde, -2) returns hhefg
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

how do i get the same output because i followed the instrution and the code but i am not able to get the same result as the question require the creation of both the cipher_module and p2.py?

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-engineering and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY