blob: cc38e5b181aa94823fadda02e511a62fab180af1 [file] [log] [blame]
Guido van Rossumecde7811995-03-28 13:35:14 +00001\chapter{Cryptographic Services}
2\index{cryptography}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00003
4The modules described in this chapter implement various algorithms of
5a cryptographic nature. They are available at the discretion of the
Guido van Rossumecde7811995-03-28 13:35:14 +00006installation. Here's an overview:
7
8\begin{description}
9
10\item[md5]
11--- RSA's MD5 message digest algorithm.
12
13\item[mpz]
14--- Interface to the GNU MP library for arbitrary precision arithmetic.
15
16\item[rotor]
17--- Enigma-like encryption and decryption.
18
19\end{description}
Guido van Rossum16d6e711994-08-08 12:30:22 +000020
Guido van Rossum470be141995-03-17 16:07:09 +000021Hardcore cypherpunks will probably find the Python Cryptography Kit of
22further interest; the package adds built-in modules for DES and IDEA
23encryption, and provides a Python module for reading and decrypting
24PGP files. The Python Cryptography Kit is not distributed with Python
25but available separately. See the URL
26\file{http://www.cs.mcgill.ca/\%7Efnord/crypt.html} for more information.
27\index{PGP}
28\indexii{DES}{cipher}
29\indexii{IDEA}{cipher}
30\index{Python Cryptography Kit}