Home › B.Tech Cyber Security › cybersecurity › Cryptography › 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)._
Related questions
RSA encryption with PKCS#1 v1.5 padding is now consideredA SALT in password hashing isFORWARD SECRECY in TLS meansA CERTIFICATE AUTHORITY (CA) in PKI does what?TLS (Transport Layer Security) uses a HYBRID encryption scheme. Why?An HMAC (Hash-based Message Authentication Code) providesWhich block cipher mode is INSECURE and should NEVER be used because it leaks PATTERNS in Which hash algorithm is considered DEPRECATED / WEAK and should NOT be used for new applic