blob: dce5a01ac6de787e46a696593146db8b67280c4f [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2.. _crypto:
3
4**********************
5Cryptographic Services
6**********************
7
8.. index:: single: cryptography
9
10The modules described in this chapter implement various algorithms of a
11cryptographic nature. They are available at the discretion of the installation.
12Here'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
25Hardcore cypherpunks will probably find the cryptographic modules written by
26A.M. Kuchling of further interest; the package contains modules for various
27encryption algorithms, most notably AES. These modules are not distributed with
28Python but available separately. See the URL
29http://www.amk.ca/python/code/crypto.html for more information.
30