How does a public/private key encryption work?

1.02K views

If something can be encrypted with a public key, why can’t someone just reverse engineer the encryption using the public key to get the original data?

In: Technology

7 Answers

Anonymous 0 Comments

Public Key encryption is used to _encrypt_ the data only. The private key is use to _decrypt_ only.
But yes, it is susceptible to Brute Force attacks, although it would typically take _a long time_.
> Confidentiality can be achieved using Public Key Encryption. In this the Plain text is encrypted using receiver public key. This will ensures that no one other than receiver private key can decrypt the cipher text.

[source](https://www.geeksforgeeks.org/public-key-encryption)

You are viewing 1 out of 7 answers, click here to view all answers.