Encryption Quiz Acronyms

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/39

flashcard set

Earn XP

Description and Tags

https://www.examcompass.com/comptia-security-plus-sy0-701-exam-encryption-quiz

Last updated 8:18 AM on 6/5/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

40 Terms

1
New cards

SED

Self-Encrypting Drive

A hard drive with built-in hardware encryption.
The drive encrypts itself automatically. No software needed.

2
New cards

FDE

Full Disk Encryption

Software that encrypts an entire storage drive.
Examples: BitLocker (Windows), FileVault (macOS).

3
New cards

EFS

Encrypting File System

A Windows feature that encrypts individual files or folders, not the whole drive.

4
New cards

TPM

Trusted Platform Module

A chip on the motherboard that stores encryption keys securely.
Often used with BitLocker.

5
New cards

HSM

Hardware Security Module

A separate physical device (not a drive) that manages and stores cryptographic keys.
More secure than TPM.

6
New cards

VPN

Virtual Private Network

Creates an encrypted tunnel over an untrusted network (like the internet).
Hides your IP address and encrypts traffic.

7
New cards

IPsec

Internet Protocol Security

A suite of protocols that authenticates and encrypts IP packets.
Commonly used for site-to-site VPNs.

8
New cards

SSL

Secure Sockets Layer

An outdated cryptographic protocol for securing network communications.
Deprecated and replaced by TLS.

9
New cards

TLS

Transport Layer Security

The successor to SSL.
Provides secure communications over a network.
Used in HTTPS.

10
New cards

SSH

Secure Shell

A protocol for secure remote login and command execution on another computer.
Encrypts everything in the session.

11
New cards

SFTP

SSH File Transfer Protocol

A protocol for secure file transfer that runs over SSH.
It is NOT an extension of FTP.
Uses port 22.

12
New cards

FTPS

FTP over SSL/TLS

FTP with SSL/TLS encryption added.
Different from SFTP (which uses SSH).

13
New cards

SRTP

Secure Real-time Transport Protocol

Encrypts real-time communication like VoIP phone calls and video conferencing.

14
New cards

S/MIME

Secure/Multipurpose Internet Mail Extensions

A protocol for encrypting and digitally signing email messages.

15
New cards

WPA2

Wi-Fi Protected Access 2

A Wi-Fi security standard.
Uses CCMP for encryption.

16
New cards

CCMP

Counter Mode CBC MAC Protocol

The encryption protocol used by WPA2.
Replaced TKIP.

17
New cards

TKIP

Temporal Key Integrity Protocol

An older Wi-Fi encryption protocol used by WPA.
Deprecated and replaced by CCMP.

18
New cards

AES

Advanced Encryption Standard

A symmetric encryption algorithm.
The least vulnerable to attacks.
Recommended replacement for DES.
Used by WPA2, BitLocker, and many others.

19
New cards

DES

Data Encryption Standard

An old symmetric encryption algorithm with a 56-bit key.
Broken and deprecated.

20
New cards

3DES

Triple Data Encryption Standard

Applies DES three times to each block.
More secure than DES but slower.
Deprecated and replaced by AES.

21
New cards

RC4

Rivest Cipher 4

A stream cipher.
Weak and deprecated.
Should not be used.

22
New cards

IDEA

International Data Encryption Algorithm

A deprecated symmetric-key block cipher.
Largely replaced by AES.

23
New cards

RSA

Rivest-Shamir-Adleman

An asymmetric (public-key) encryption algorithm.
Used for digital signatures and key exchange.
Not for bulk data encryption.

24
New cards

DSA

Digital Signature Algorithm

An asymmetric algorithm used only for digital signatures (not encryption).

25
New cards

ECDSA

Elliptic Curve Digital Signature Algorithm

A more efficient version of DSA using elliptic curve cryptography.
Provides same security as RSA with smaller keys.

26
New cards

KEK

Key Encryption Key

A cryptographic key used to encrypt other keys.
Adds an extra layer of security in key management systems.

27
New cards

IKE

Internet Key Exchange

A protocol used to set up secure connections and exchange keys in IPsec VPNs.

28
New cards

DHE

Diffie-Hellman Ephemeral

A key exchange protocol that generates temporary (ephemeral) keys for each session.
Provides Perfect Forward Secrecy.

29
New cards

PFS

Perfect Forward Secrecy

A property of key exchange protocols.
If one key is stolen, past and future sessions remain secure because keys are temporary.

30
New cards

ESP

Encapsulating Security Payload

A protocol in IPsec that encrypts and authenticates IP packet data.

31
New cards

ECB

Electronic Codebook

The simplest and weakest block cipher mode.
Identical plaintext blocks produce identical ciphertext blocks.
Not recommended for use.

32
New cards

CBC

Cipher Block Chaining

Each ciphertext block depends on the previous block.
More secure than ECB.

33
New cards

CFB

Cipher Feedback

Turns a block cipher into a stream cipher.
Can encrypt individual bits or bytes.

34
New cards

CTM

Counter Mode

Uses a counter value plus a key to generate a stream of blocks.
Allows parallel encryption.

35
New cards

GCM

Galois/Counter Mode

Combines CTM for encryption with an authentication mechanism.
Provides both confidentiality and integrity.

36
New cards

SHA

Secure Hash Algorithm

A family of cryptographic hash functions.
Produces a fixed-size hash from any input.
Used for integrity verification.

37
New cards

PGP

Pretty Good Privacy

Software for encrypting files and emails.
Uses both symmetric and asymmetric encryption.

38
New cards

GPG

GNU Privacy Guard

The free, open-source version of PGP.
Same functionality as PGP.

39
New cards

IV

Initialization Vector

A random or pseudorandom value added to encryption.
Ensures the same plaintext produces different ciphertext each time.

40
New cards

XOR

Exclusive Or

A logical operation used in encryption and obfuscation.
Outputs true only when inputs differ.