0
8.8kviews
Elaborate the steps of key generation using RSA algorithm.
2 Answers
2
514views

RSA:

  1. RSA is a public key encryption algorithm.

  2. RSA is derived from its inventors Rivest, Shamir and Adleman in 1978.

Steps:

  1. Choose two different large random prime numbers say “p” and “q”.
  2. Calculate n = p * q. Since “n” is the modulus for the public key and the private …

Create a free account to keep reading this post.

and 5 others joined a min ago.

0
392views
  • The RSA Algorithm is a popular Public-Key encryption Technique.
  • It is based on exponentiation in a finite field over integers module a prime
  • The integers used by this method is very large make it difficult to solve (by an attacker w/o the key)
  • There are two set of keys in …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.