Practice free →
HomeB.Tech Cyber SecuritycybersecurityCryptography › ASYMMETRIC (public-key) cryptography uses

ASYMMETRIC (public-key) cryptography uses

Atwo linked keys: public + private
Bthe same key for both parties
Ca one-way hash only
Dno encryption at all
Answer & Solution
Correct answer: A. two linked keys: public + private
1. ASYMMETRIC crypto: a key PAIR — anyone can encrypt to your public key, only your private key can decrypt. 2. Examples: RSA, ECC (Elliptic Curve), DSA, ElGamal. 3. SOLVES key distribution: you can publish your public key openly; secrecy of the private key is all that matters. 4. TRADE-OFF: much slower than symmetric (1000s of times). In practice: use asymmetric to exchange a session key, then symmetric for the actual data (HYBRID scheme). 5. Other options describe other cryptographic primitives. _Source: Boneh & Shoup, "A Graduate Course in Applied Cryptography", §10 (Public-key encryption)._
Solve this in the app — B.Tech Cyber Security practice & 24k+ MCQs →
Related questions