Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 1 | \chapter{Cryptographic Services} |
| 2 | \index{cryptography} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 3 | |
| 4 | The modules described in this chapter implement various algorithms of |
| 5 | a cryptographic nature. They are available at the discretion of the |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 6 | installation. 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 Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 20 | |
Guido van Rossum | 761f792 | 1996-07-23 18:16:56 +0000 | [diff] [blame] | 21 | Hardcore cypherpunks will probably find the cryptographic modules |
| 22 | written by Andrew Kuchling of further interest; the package adds |
| 23 | built-in modules for DES and IDEA encryption, provides a Python module |
| 24 | for reading and decrypting PGP files, and then some. These modules |
| 25 | are not distributed with Python but available separately. See the URL |
Guido van Rossum | 36845ed | 1996-10-22 02:25:24 +0000 | [diff] [blame] | 26 | \file{http://www.magnet.com/~amk/python/pct.html} or send email to |
Guido van Rossum | 761f792 | 1996-07-23 18:16:56 +0000 | [diff] [blame] | 27 | \file{amk@magnet.com} for more information. |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 28 | \index{PGP} |
| 29 | \indexii{DES}{cipher} |
| 30 | \indexii{IDEA}{cipher} |
Guido van Rossum | 761f792 | 1996-07-23 18:16:56 +0000 | [diff] [blame] | 31 | \index{cryptography} |