Skip to main content
← Blog·9 min read·September 7, 2026

Cryptography and PKI: What Security+ Actually Tests

Ask a room of Security+ candidates which topic makes them nervous, and cryptography comes up more than almost anything else. The vocabulary is dense, the acronyms pile up, and it can feel like math you were supposed to learn somewhere else. Here is the reassuring part: SY0-701 does not ask you to build a cipher. It asks you to know which tool solves which problem, and why. This post walks through symmetric vs asymmetric encryption, hashing, digital signatures, and the PKI certificate chain in plain English, and maps each piece to the exam objective it belongs to. And because the CIA triad of confidentiality, integrity, and availability sits underneath all of it, we keep tying each tool back to what it actually protects.

N
IT Service Center Manager, former CTE teacher, founder of Revtek

Where does cryptography live on the SY0-701 exam? In Domain 1, about 12 percent of the test.

Cryptography lives in Domain 1, General Security Concepts, the smallest domain on SY0-701 at roughly 12 percent of the exam. The cryptographic-solutions objective is where locks, keys, hashes, signatures, and certificates all sit.

Do not let the small percentage fool you. Cryptography is a foundation the rest of the exam stands on. Secure protocols in the architecture domain, incident response in operations, and program-level risk decisions all assume you already understand what encryption and hashing do. Learn it once here, and the other domains get easier.

On the current blueprint this is objective 1.4, and knowing exactly which objective a concept belongs to is the whole point of how we study. A standalone help-desk simulator can teach you to clear a certificate error, but it will not tell you that certificates map to Domain 1. Tying every concept to the Security+ track blueprint is how you study the test that exists instead of the one you are afraid of.

Symmetric vs asymmetric encryption: what is the real difference?

Symmetric encryption uses one shared secret key to lock and unlock. Asymmetric encryption uses a matched pair, a public key and a private key, where whatever one key locks, only the other can open.

Symmetric is the workhorse. AES, the Advanced Encryption Standard defined in NIST FIPS 197, is the algorithm you will see named most often, with key sizes of 128, 192, or 256 bits. It is fast and it is trusted for bulk data. The catch is obvious once you say it out loud: both sides need the same secret key, so how do you get that key to the other person without someone intercepting it along the way?

That problem is what asymmetric encryption solves. RSA and ECC, which stands for elliptic curve cryptography, are the two names to know. Each party has a key pair. You hand out your public key to anyone, and you guard your private key. A useful picture: symmetric is one house key that two roommates both copy, while asymmetric is a mailbox with a public slot anyone can drop mail into, but only your private key opens the box. Same goal, confidentiality, two very different ways of handling the keys.

Why is asymmetric encryption slow, and why does that matter?

Asymmetric math is far more expensive than symmetric, so we almost never use it for bulk data. Instead we use it briefly to exchange a symmetric key, then switch to fast symmetric encryption for the real conversation.

This is the pattern under every HTTPS connection. The two sides use asymmetric keys to safely agree on a shared secret, a session key, and then hand the heavy lifting to AES. You get the best of both: asymmetric solves the delivery problem, symmetric does the fast encryption. On the exam, if a question describes using a public and private key just to set up a session and then switching to a single shared key, that is key exchange, and it is a favorite scenario.

ECC matters here because it reaches security comparable to RSA with much smaller keys, which is why phones and modern web traffic lean on it. Choosing key lengths and rotating keys is its own discipline, covered in NIST SP 800-57. This same handshake logic shows up when you study zero trust, where nothing is trusted by default and identity has to be proven cryptographically at every step.

What does hashing actually prove?

Hashing proves integrity, not confidentiality. A hash is a one-way fingerprint: the same input always produces the same fixed-length output, and you cannot run it backward to recover the original data.

The SHA-2 family, including SHA-256, is the standard you will see named. Run a file through it and you get a fixed-length digest. Change a single byte of the file and the digest changes completely, which is how you detect tampering. This is why download pages publish a hash, and why systems store a hash of your password instead of the password itself, usually with a random salt added so that identical passwords do not produce identical hashes.

Here is the trap the exam loves: hashing is not encryption. Encryption is reversible if you hold the key. Hashing is meant to be irreversible. If a question asks how to confirm a message was not altered in transit, it is pointing at hashing and integrity, the same integrity leg you met in the CIA triad.

Digital signatures: the private key signs, the public key verifies.

A digital signature flips the key pair around. You sign with your private key, and anyone can verify with your public key. That combination proves the message truly came from you and was not changed on the way.

Think of a wax seal on a letter. Only you own the stamp that makes your seal, so a genuine seal proves you sent it, and a broken seal proves someone tampered with it. Digitally, you hash the message first, then encrypt that hash with your private key. That encrypted hash is the signature. The recipient decrypts it with your public key and re-hashes the message themselves. If the two hashes match, the message is authentic and intact.

This gives you three things at once: integrity, authentication, and non-repudiation, meaning you cannot later deny that you signed it. The algorithms live in NIST FIPS 186-5, the Digital Signature Standard, which covers RSA, ECDSA, and EdDSA. Notice the pattern: signatures reuse the hashing and asymmetric keys you already learned, just pointed at a different goal.

PKI and the certificate chain: who do you trust, and why?

PKI answers one question: is this public key really theirs? A certificate authority vouches for a public key by signing a certificate, and your device trusts a chain that runs from a root down to the site you visited.

The chain has three links to know. A root CA sits at the top, its certificate preinstalled and trusted by your operating system and browser. The root signs one or more intermediate certificates. An intermediate signs the leaf, also called the end-entity certificate, which is the one on the website you are visiting. Your browser walks that chain upward: leaf, to intermediate, to a root it already trusts.

If every link checks out, you get the padlock and no warning. If any link is missing, expired, or untrusted, the browser stops and warns you. That single mechanism, a root of trust plus a verifiable chain, is what makes secure web traffic possible at scale. It is also one of the most common real-world tickets a support tech ever touches.

How do you know if you actually understand crypto yet?

You find out before exam day, not during it. The honest signal is whether you can explain each tool and pick the right one under pressure, which is exactly what focused quizzes and a full-length practice run surface.

As you work through Study mode, the Mastery Index turns your quiz and practice-exam answers into a study signal for each topic, shown with an evidence-quality label so you know how much to trust it. It is uncalibrated, and it is not a pass prediction. What it does well is flag the difference between crypto you can recite and crypto you can apply, so that reading the chapter does not get mistaken for knowing the material.

Pair that with the full practice exam, one free attempt per track, and hands-on reps in Adventure mode where certificate warnings and encryption choices show up as tickets. This depth is not for someone cramming the night before hoping to guess a few questions. It is for people who want the concept to stick past the test and into the job.

The short version

Cryptography on SY0-701 is not about doing the math. It is about matching the tool to the problem. Symmetric encryption like AES gives you speed, asymmetric like RSA and ECC solves key exchange and identity, hashing with SHA-2 protects integrity, digital signatures add authentication and non-repudiation, and PKI ties public keys to real owners through a chain of trust. That map is also why we teach the cert and the job together. The tech who understands a certificate chain is the one who clears the browser-warning ticket in their first week, not just the one who answered a question about it. We make no promises about your score. What we can do is help you see, honestly, whether crypto has clicked. Work the concepts, then let the Mastery Index and a practice exam tell you the truth before test day does.

Sources

  1. NIST. FIPS 197: Advanced Encryption Standard (AES). The federal standard that defines AES, the symmetric block cipher with 128, 192, and 256-bit key sizes referenced throughout this post.
  2. NIST. FIPS 186-5: Digital Signature Standard (DSS). The current standard for digital signatures, covering the RSA, ECDSA, and EdDSA algorithms.
  3. NIST. SP 800-57 Part 1 Rev. 5: Recommendation for Key Management. Authoritative guidance on key lengths, key exchange, and key lifecycle management.
  4. CompTIA. Security+ (SY0-701) Certification. Official Security+ page confirming the five domains and that General Security Concepts, where cryptography sits, is about 12 percent of the exam. Download the full objectives PDF to verify objective numbers.

Who writes this, and who checks it

Nicholas Miller
IT Service Center Manager · former high school CTE and IT teacher · founder of Revtek IT Solutions

Nick writes and edits these posts. AI helps with research, outlines, and first drafts. Nick reviews the draft before it goes live, and he is the only reviewer, so this is one person checking his own work. That catches a lot and it misses some.

When a post turns out to be wrong, the fix and the date it happened go on the corrections log, in public, including the ones nobody outside noticed. We do not use confidential, recalled, or leaked exam content. These posts are written from CompTIA's published objectives and authoritative technical sources. The AI policy has the longer version.

LinkedIn ↗