Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Python decrypting ciphers! Write a function called decryptstring that accepts a ciphertext byte string, a multiplier ( m ), and shift amount ( k ).
Python decrypting ciphers!
Write a function called decryptstring that accepts a ciphertext byte string, a multiplier (m), and shift amount (k). It returns an array of integers containing the decrypted values.
def decryptstring( ciphertext, m, k):
these need to work:
decryptstring(b"s\x04''6\xab\xaa\x18\x04EE\xf0", 5, 11) should return [72, 101, 108, 108, 111, 32, 83, 105, 101, 114, 114, 97]
decryptstring(b'AB', 13, 50) should return [139, 80]
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started