Can You Explain Me About RSA Algorithm In Computer Networks?

2

2 Answers

Sana Rashid Profile
Sana Rashid answered
RSA is an algorithm in cryptography. It is used for public cryptography. RSA has many application in the computer field like electronic commerce.
Read all about RSA algorithm in the following link
and for example click here.

TOm White Profile
TOm White answered
RSA is used for public KEY cryptography. That is, it is a way of sending a message to someone where ONLY that person can read the message.  This is called asymmetric cryptography. Symmetric cryptography is where two people (or computers) know the same secret and can use it to send and receive data. Asymmetric is one way, symmetric is two ways.

This is used in computer networks to verify the identity of computers or people because they have the secret "private" key that matches the "public" key everyone else has. You can prove this with math, and it is extremely hard (most people would say "impossible") to fake a private key.

Usually asymmetric cryptography is used for two machines / people to verify each other's identity, then to send a temporary key for symmetric cryptographic algorithms (known as a "session key").

Most secure protocols on the internet (SSL, TLS, IPSEC) use this method to secure data.

Answer Question

Anonymous