Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 1 | \chapter{Cryptographic Services} |
Fred Drake | 1f3ab1c | 1998-02-18 15:22:08 +0000 | [diff] [blame] | 2 | \label{crypto} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 3 | \index{cryptography} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 4 | |
| 5 | The modules described in this chapter implement various algorithms of |
| 6 | a cryptographic nature. They are available at the discretion of the |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 7 | installation. Here's an overview: |
| 8 | |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 9 | \localmoduletable |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 10 | |
Guido van Rossum | 761f792 | 1996-07-23 18:16:56 +0000 | [diff] [blame] | 11 | Hardcore cypherpunks will probably find the cryptographic modules |
Andrew M. Kuchling | f010df4 | 2001-11-05 21:30:10 +0000 | [diff] [blame] | 12 | written by A.M. Kuchling of further interest; the package adds |
Guido van Rossum | 761f792 | 1996-07-23 18:16:56 +0000 | [diff] [blame] | 13 | built-in modules for DES and IDEA encryption, provides a Python module |
| 14 | for reading and decrypting PGP files, and then some. These modules |
| 15 | are not distributed with Python but available separately. See the URL |
Andrew M. Kuchling | f010df4 | 2001-11-05 21:30:10 +0000 | [diff] [blame] | 16 | \url{http://www.amk.ca/python/code/crypto.html} |
| 17 | for more information. |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 18 | \index{PGP} |
Fred Drake | fb74a46 | 1998-02-13 14:52:17 +0000 | [diff] [blame] | 19 | \index{Pretty Good Privacy} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 20 | \indexii{DES}{cipher} |
| 21 | \indexii{IDEA}{cipher} |
Guido van Rossum | 761f792 | 1996-07-23 18:16:56 +0000 | [diff] [blame] | 22 | \index{cryptography} |
Fred Drake | 85ea68b | 1998-04-04 06:46:05 +0000 | [diff] [blame] | 23 | \index{Kuchling, Andrew} |