Question: Implement the RSA using big integer package. use Java to write the program.For Java, the packages java.math.BigInteger and java.security.SecureRandom should be used The prime numbers
Implement the RSA using big integer package. use Java to write the program.For Java, the packages java.math.BigInteger and java.security.SecureRandom should be used The prime numbers p and q should be at least 1536-bit. The (absolute value of the) difference of two primes should be bigger than 2800 . A demonstration of encrypting a message (big number) and decrypting the ciphertext (big number) should be given. You should check that your message is coprime to the modulus N = pq. Your program should also include the encryption and decryption timing. The encryption/decryption time should be bigger than zero. The public key component e is set to be 65537. Compilable using command line javac. Java program and a readme.txt (instructions on how to compile and run your program)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
