Verschlüsselung transformiert Daten in eine unleserliche Form (Ciphertext), die nur mit dem richtigen Schlüssel entschlüsselt werden kann — zum Schutz der Vertraulichkeit. Das Verständnis von symmetrischer vs. asymmetrischer Verschlüsselung und Daten im Transit vs. im Ruhezustand ist wichtig für den Schutz sensibler Daten.
Symmetrische vs. asymmetrische Verschlüsselung
SYMMETRIC → ONE shared key encrypts AND decrypts (e.g. AES):
✓ fast, efficient → for bulk data (encrypting files, databases)
✗ both parties need the same key (key distribution is the challenge)
ASYMMETRIC → a KEY PAIR: PUBLIC key (encrypt / verify) + PRIVATE key (decrypt / sign):
→ encrypt with the public key, only the private key decrypts (e.g. RSA, ECC)
✓ solves key distribution (share the public key freely); enables signatures
✗ slower → used for key exchange, signatures, not bulk data
→ Often COMBINED: asymmetric to exchange a symmetric key, then symmetric for the data
(e.g. how TLS works).
