Component 0 - Copy this React, Mui Component to your project
Write two separate python programs to demonstrate the basic concept of "Digital Signature". In the first program, client A will have to sign a message (you may consider 10 words or more in your message). After signing, client A will send this message as well as its corresponding signature to client B. In the second program, client B will have to verify that the message (that it received) was originally signed by client A. You must submit all the files related to this lab. You also need to submit a video of your implementation explaining all the steps. Hints: Take advantage of the RSA library of Python to sign and to verify your message. https://stuvel.eu/software/rsa/Links to an external site. https://stuvel.eu/python rsa doc/usage.html#signing and verificationLinks to an external site.