| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _crypto: | 
 | 2 |  | 
 | 3 | ********************** | 
 | 4 | Cryptographic Services | 
 | 5 | ********************** | 
 | 6 |  | 
 | 7 | .. index:: single: cryptography | 
 | 8 |  | 
 | 9 | The modules described in this chapter implement various algorithms of a | 
 | 10 | cryptographic nature.  They are available at the discretion of the installation. | 
| Nick Coghlan | 74cca70 | 2012-09-28 18:50:38 +0530 | [diff] [blame] | 11 | On Unix systems, the :mod:`crypt` module may also be available. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 12 | Here's an overview: | 
 | 13 |  | 
 | 14 |  | 
 | 15 | .. toctree:: | 
 | 16 |  | 
 | 17 |    hashlib.rst | 
 | 18 |    hmac.rst | 
 | 19 |  | 
 | 20 | .. index:: | 
 | 21 |    pair: AES; algorithm | 
 | 22 |    single: cryptography | 
 | 23 |    single: Kuchling, Andrew | 
 | 24 |  | 
 | 25 | Hardcore cypherpunks will probably find the cryptographic modules written by | 
 | 26 | A.M. Kuchling of further interest; the package contains modules for various | 
 | 27 | encryption algorithms, most notably AES.  These modules are not distributed with | 
 | 28 | Python but available separately.  See the URL | 
| Benjamin Peterson | a08eb73 | 2011-06-16 18:49:46 -0500 | [diff] [blame] | 29 | http://www.pycrypto.org  for more information. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 30 |  |