// Comparison

Reversing vs Understanding Cryptography: Which Should You Read?

Two cybersecurity books on Foundations, compared honestly: who each is for, what each does best, and which to read first.

Intermediate
4/52005
Reversing

Secrets of Reverse Engineering

Eldad Eilam

The book that taught a generation how software actually looks once you strip away the source. Still the clearest on-ramp to thinking in assembly, even with dated tools.

Intermediate
4/52010
Understanding Cryptography

A Textbook for Students and Practitioners

Christof Paar, Jan Pelzl

A genuinely teachable intro to modern cryptography that derives the math instead of hand-waving it, covering symmetric and public-key primitives without drowning you in proofs.

Read this if

People who want to genuinely understand reverse engineering from first principles rather than just running a disassembler and hoping. Self-taught practitioners filling in the gaps under their tooling.
Engineers and students who want to actually understand AES, RSA, and ECC rather than just call a library, and who learn better from worked examples than from theorem-proof.

Skip this if

Anyone who wants a modern, hands-on lab course. Skip this if you expect Ghidra walkthroughs or current malware samples; the toolchain here is OllyDbg and IDA-era and the OS examples are Windows XP.
Skip this if you want a security-engineering how-to. It teaches the primitives, not protocol design, key management, or how things break in production.

Key takeaways

  • Reverse engineering is a disciplined reading skill, not magic; the fundamentals of how compilers, stacks, and calling conventions work outlast any tool.
  • The most durable part of the book is the bridge from high-level constructs to their assembly fingerprints, which you will recognize for the rest of your career.
  • The Windows-internals, copy-protection, and anti-reversing material is a snapshot of 2005 and should be treated as historical context, not current practice.
  • The discrete logarithm problem and integer factorization are the two pillars under most deployed public-key crypto, and the book makes you compute with both.
  • AES is presented as understandable finite-field arithmetic, not magic, which demystifies the most-used cipher on earth.
  • Cryptographic security is about quantifying attacker effort, not about secrecy of the algorithm.

How they compare

Reversing and Understanding Cryptography are both rated 4/5 in our catalog. Pick by topic preference and reading style rather than by rating.

Both books target intermediate-level readers, so the choice is about topic, not difficulty.

Reversing and Understanding Cryptography both cover Foundations, so reading them in sequence reinforces the same material from different angles.

Keep reading

Related topics