-
Describe the concept of public and private key with your own words.
A private key is a random string, kinda like a password.
A public key is mathematically derived from the private key in such a way that, the private key can not be determined from it so it can be publicly shared and used to encrypt information that only the private key can decrypt. -
What 2 use-cases can public-key cryptography be used for?
Public-key cryptography can be used for encrypting information for a public network securely, no need to risk someone intercepting the keys and decrypting it.
It can also be used for digital signatures, and authentication.