Chapter 12 Β· Flashcards

Encrypting Data Flashcards

16 cards. Click to flip.

0 / 16 flipped

What are the 3 states of data that need encryption?

1. At rest β€” stored on drives, SSDs, USB
2. In database β€” stored in database tables
3. In transit β€” moving across a network

What is BitLocker?

Windows full-volume encryption. Encrypts an entire disk so data is unreadable without the decryption key (stored in TPM). Protects data-at-rest against physical drive theft.

What is FileVault?

Apple macOS full-disk encryption β€” equivalent to BitLocker. Encrypts the entire volume. Data is inaccessible without login credentials or recovery key.

What is EFS?

Encrypting File System β€” Windows file-level encryption built into NTFS. Encrypts individual files or folders (not the whole volume). Enabled via file Properties β†’ Advanced Attributes β†’ "Encrypt contents to secure data."

What is transparent database encryption?

Encrypting an entire database with a symmetric key. All data is encrypted β€” every column and row. Maximum protection but queries must decrypt everything, creating higher overhead.

What is column-level encryption?

Encrypting only specific sensitive database columns (SSN, credit card, diagnosis) while leaving non-sensitive columns in plaintext. Better performance β€” decryption only happens when the sensitive column is accessed.

What is HTTPS?

HTTP over TLS β€” encrypts all communication between a browser and web server. Shown by the padlock icon. Standard for any website handling sensitive information. Protects data in transit.

What protocol is used for site-to-site VPNs?

IPsec β€” Internet Protocol Security. Encrypts IP packets at the network layer. Used to create persistent encrypted tunnels between two office networks. Both endpoints must support the same IPsec configuration.

What protocol is used for client VPNs?

SSL/TLS β€” used for remote-user VPNs (client VPNs). Allows individual users to connect from anywhere to the corporate network over an encrypted tunnel. More flexible than IPsec for mobile users.

Why must both sides use the same encryption algorithm?

Algorithms define both the encryption process AND the decryption formula. AES-encrypted data CANNOT be decrypted by DES. Both endpoints agree on an algorithm before the session starts β€” otherwise communication fails.

Why is the encryption algorithm public while the key is secret?

Publishing the algorithm allows peer review and trust-building β€” if the math is scrutinized by experts and holds up, it's trustworthy. Security comes from the KEY β€” even knowing exactly how AES works, you cannot decrypt without the key. Like knowing how a lock works but not having the key.

What is key stretching?

Hashing a password (or key) multiple times β€” hash the hash of the hash β€” to make brute-force attacks more expensive. Each brute-force attempt must perform the same hash chain, multiplying computation time significantly.

What key length is recommended for symmetric encryption today?

128-bit minimum (AES-128). AES-256 is recommended for high-security applications. Key lengths must increase over time as computing power grows. A 56-bit DES key is now brute-forceable β€” don't use DES.

What key length is recommended for asymmetric encryption?

3072-bit or larger for RSA. Asymmetric keys need to be much longer than symmetric keys because the mathematical structure of the key pair provides additional attack surface. Key lengths grow as processors improve.

When is EFS preferred over BitLocker?

When you need to encrypt only specific files on a shared server β€” not the entire volume. Example: a file server where most content is public, but a few sensitive HR documents need encryption. EFS encrypts those files specifically; other users can still access their non-sensitive files normally.

What does DES stand for, and is it still used?

Data Encryption Standard. No β€” it should NOT be used. 56-bit key length is too short and has been brute-forced. Replaced by AES. Still appears on the Security+ exam as a "do not use" comparison point. If a question mentions DES as an option, it's almost always the wrong answer.