Advanced Cryptography Practice Flashcards

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

1/45

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering the key terms and concepts of Advanced Cryptography, including Digital Certificates, PKI components, trust models, secure protocols, and implementation standards.

Last updated 9:13 PM on 7/5/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

46 Terms

1
New cards

Digital Certificate

The technology that binds a user's verified identity to their public key, with the entire package digitally signed by a trusted third party.

2
New cards

Certificate Signing Request (CSR)

A structured process for the creation and issuance of a digital certificate, where a user generates a key pair and signs a request with their public key.

3
New cards

Registration Authority (RA)

An entity responsible for receiving certificate requests and verifying the authenticity and identity of the applicant.

4
New cards

Intermediate Certificate Authority (CA)

A subordinate entity within the PKI hierarchy that processes CSRs and issues digital certificates, protecting the root CA from exposure.

5
New cards

Certificate Repository (CR)

A publicly accessible, centralized directory of digital certificates used to look up a certificate's current status.

6
New cards

Certificate Revocation List (CRL)

A published list of all digital certificates that have been revoked by the issuing CA before their scheduled expiration date.

7
New cards

Online Certificate Status Protocol (OCSP)

An improvement on CRLs that performs a real-time lookup of a certificate's revocation status by sending its serial number to a trusted responder.

8
New cards

OCSP Stapling

An optimization where a web server proactively queries the OCSP responder and attaches the signed, time-stamped response to the TLS handshake.

9
New cards

Certificate Chaining

A hierarchical validation process that creates a verifiable trail of trust from the trusted root CA down to the end-user certificate.

10
New cards

Root Digital Certificate

The beginning of the certificate chain, created and self-signed by a CA, which is trusted implicitly without higher-level authority.

11
New cards

Domain Validation (DV)

A web server certificate that verifies the applicant controls the domain; it is the fastest and least expensive to obtain.

12
New cards

Extended Validation (EV)

A web server certificate requiring rigorous vetting of an organization's legal identity to provide the highest level of trust assurance.

13
New cards

Wildcard Certificate

A certificate that covers a domain and all of its subdomains, designated by an asterisk (e.g., *.example.com\text{*.example.com}).

14
New cards

Subject Alternative Name (SAN)

An attribute that allows a single certificate to secure multiple distinct domain names.

15
New cards

Machine / Computer Certificate

A certificate assigned to a specific device, such as a workstation or server, to authenticate the machine itself within a network.

16
New cards

Code Signing Certificate

A certificate used by software developers to digitally sign executables and scripts, ensuring the code has not been tampered with.

17
New cards

X.509 Version 3

The globally recognized standard format for digital certificates, defining mandatory and optional fields such as validity period and public keys.

18
New cards

Common Name (CN)

A field in an X.509 certificate representing the fully qualified domain name (FQDN) or identifier of the protected entity.

19
New cards

Public Key Infrastructure (PKI)

The comprehensive framework of people, technology, and policies needed to manage digital certificates at scale.

20
New cards

Certificate Policy (CP)

A published set of rules governing the overall operation of a PKI and setting baseline security requirements.

21
New cards

Certificate Practice Statement (CPS)

A detailed technical document describing exactly how a CA manages, issues, distributes, and revokes certificates.

22
New cards

Direct Trust

A trust model where two parties trust each other based on a direct personal relationship and firsthand identity verification.

23
New cards

Third-Party Trust

A model where two individuals trust each other because they both independently trust a common third party, such as a CA.

24
New cards

Web of Trust

A decentralized model where users sign each other's certificates directly, common in PGP email encryption.

25
New cards

Hierarchical Trust Model

A structure with a single root CA at the top that signs all subordinate certificates; it is simple to manage but represents a single point of failure.

26
New cards

Distributed Trust Model

A structure featuring multiple CAs that can independently sign certificates, providing redundancy and scalability.

27
New cards

Bridge Trust Model

A model where a central Bridge CA interconnects independent CA infrastructures to facilitate cross-organizational trust.

28
New cards

Key Escrow

A process where keys are held by a trusted third party for recovery purposes if the original key is lost.

29
New cards

Cryptoperiod

The defined length of time a cryptographic key is authorized for use.

30
New cards

M-of-N Control

A security mechanism requiring a minimum number (M) of authorized individuals out of a total group (N) to cooperate to perform sensitive key operations.

31
New cards

Tunneling

A technique that wraps original data inside a new protocol layer to ensure confidentiality and integrity over untrusted networks.

32
New cards

Transport Layer Security (TLS)

A protocol operating at the transport layer that secures communications like web browsing using asymmetric and symmetric cryptography.

33
New cards

IP Security (IPSec)

A suite of protocols securing communications at the network layer, commonly used for VPNs and remote access.

34
New cards

Cipher Suite

A named combination of cryptographic algorithms (encryption, authentication, and MAC) used within a TLS session.

35
New cards

Authentication Header (AH)

An IPSec protocol that ensures data integrity and authenticates the source of IP packets.

36
New cards

Encapsulating Security Payload (ESP)

An IPSec protocol that encrypts packet payloads to ensure confidentiality.

37
New cards

HTTPS

HTTP transmitted over TLS, typically using port 443443.

38
New cards

SSH (Secure Shell)

An encrypted alternative to Telnet used for secure remote system administration.

39
New cards

S/MIME

A protocol for providing encryption and digital signatures for email messages.

40
New cards

SRTP

A secure extension of RTP designed to protect real-time audio and video transmissions from interception and replay attacks.

41
New cards

CSPRNG

A cryptographically secure random number generator used to ensure the randomness and strength of cryptographic keys.

42
New cards

Kerckhoffs's Principle

A foundational rule stating that a system should be secure even if everything about it is public knowledge, except for the secret key.

43
New cards

ECB (Electronic Code Book)

A block cipher mode where each block is encrypted independently with the same key; it is considered insecure because it reveals data patterns.

44
New cards

CBC (Cipher Block Chaining)

A mode where each block is XOR'd with the previous ciphertext block before encryption, requiring an initialization vector (IV).

45
New cards

CTR (Counter Mode)

A mode that converts a block cipher into a stream cipher using a counter value, allowing for parallelization.

46
New cards

GCM (Galois/Counter Mode)

A mode combining CTR encryption with Galois field authentication to provide both confidentiality and data integrity.