views:

142

answers:

2

Is there a good Perl book on cryptology?

+6  A: 

P.S. Why are you asking? Are you applying to this job? "Senior Software Engineer - C/C++ - Cryptography - Perl - Python". Position opened 4/19/2010 :)

DVK
@DVK no I am not applying to this position
chome
+6  A: 

Practical Cryptography, by Bruce Schneier.

The book is not Perl specific, but it doesn't really need to be - read it and you'll learn about all the different hashes, ciphers and signatures, which are the best for any given situation, and more importantly how to apply them correctly without building an insecure system.

Once you know what cryptographic tools you want to use, and how to use them, you can find the relevant tool on CPAN. For example, look at the POD for Crypt::RSA. You don't need a book to learn how to use the modules - you'd be better served reading about pure crypto.

rjh