Question: 2 . ( 2 0 points ) List and briefly explain the four steps of operations / transformations that AES performs in each round of

2.(20 points) List and briefly explain the four steps of operations/transformations that AES performs in each round of its encryption algorithm.3.(40 points) In this part, you will use the following python functions to sign and verify the signature of different messages:def rsa_message_sign(message: str, d: int, n: int)-> int: digest = hashlib.sha256(message.encode("ascii", "ignore")) return pow(int(digest.hexdigest(),16), d, n)def rsa_signature_verify(message: str, signature: int, e: int, n: int)-> bool: expected_digest = pow(signature, e, n) digest = int(hashlib.sha256(message.encode("ascii", "ignore")).hexdigest(),16) return expected_digest == digest

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!