Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Would someone recommend a good book on data encryption algorithms? I would like one that has the math theory as well as some code examples.

share|improve this question
Was google broken? I should think that a simple Google search would turn up dozen's of links. Please do the Google search, read the links, and then ask SPECIFIC questions on the most promising of those links. – S.Lott Dec 10 '09 at 0:34
@S.Lott So what do we need SO for, when we have google? The OP asked for recommendations, not for a smarty-pants answer. – quant_dev Sep 4 '11 at 11:33
@quant_dev: Do you know what the OP meant by "good book"? I sure don't. It would be better if the OP listed specific books which were not good and specific criteria that made them not good. Given facts, we could deduce what they meant by "good" and provide a recommendation instead of a random answer. Lacking a definition of "good" and lacking any insight into what the OP has actually read, all we have left is random answers. I prefer to get past random in into SPECIFICs. But maybe that's just me. – S.Lott Sep 6 '11 at 12:17
@S.Lott Yeah, I bet that by "good" the OP meant "tastes good with soy sauce". – quant_dev Sep 6 '11 at 14:00
show 7 more comments

closed as not constructive by Smi, Jason Heine, bpeterson76, Wug, CJM Nov 8 '12 at 23:05

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

up vote 12 down vote accepted

Anything by Bruce Schneier.

I'd recommend "Applied Cryptography" and "Practical Cryptography"

http://www.schneier.com/books.html

share|improve this answer
1  
Not really anything. Beyond Fear and Secrets and Lies aren't very suitable :-) – Јοеу Dec 9 '09 at 23:41
Interesting reading though... "Applied Cryptography" is really the canonical answer to this question. – Paul McMillan Dec 10 '09 at 1:06

Others mention Bruce Schneier. Note however this blog by Schneier himself, on a comparison between "Applied Cryptography" and "Practical Cryptography". Schneier himself seems to be saying that "Applied Cryptography" is rather outdated now, and "Practical Cryptography" is the one to read.

He also comments on the danger of reading a book and then thinking you're good-to-go on design of secure systems.

share|improve this answer
They really serve different purposes. It sounds like the OP wants to know about how encryption works, as opposed to how to implement and use it. – Paul McMillan Dec 10 '09 at 1:07
1  
"Applied Cryptography" is indeed outdated. Quite a large number of claims in this book are wrong, e.g., because new attacks have been found in the meantime. – Accipitridae Dec 11 '09 at 9:24

Just an advice, just in case you are tempted to re-implement one of the algorithms on you own: don't! At least not for a real world product. Just use one of the standard libraries. You can do so much wrong. In case of security when you need to rely on the algorithm and the implementation you should use something that has proven for many years and checked by many (knowledgeable) eyeballs.

Though, it's fine to implement one just to get some feelings and experiences :-)

share|improve this answer

Handbook of Applied Cryptography (http://www.cacr.math.uwaterloo.ca/hac/) is available online for free. Personally, I also enjoyed Cryptography Theory and Practice by Doug Stinson.

share|improve this answer
2  
Good call -- this covers the underlying theory much better than any of Schneier's books. – Jerry Coffin Dec 10 '09 at 4:36
1  
Yes, absolutely. It is so sad that good books like the two mentioned above don't get more attention. – Accipitridae Dec 10 '09 at 20:57

An excellent resource for this is Bruce Schneier's Applied Cryptography.

share|improve this answer

Some alternatives are:

"Cryptography decrypted‎" by H. X. Mel, Doris M. Baker: This book is well written and easy to understand. It describes the concepts behind cryptography, but does not go too much into details.

"Modern cryptography" by W. Mao: This book explains the math behind cryptography exceptionally well.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.