blob: a233561d1ec3c710593ed6c6813ff4cd6ea32f75 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _crypto:
2
3**********************
4Cryptographic Services
5**********************
6
7.. index:: single: cryptography
8
9The modules described in this chapter implement various algorithms of a
10cryptographic nature. They are available at the discretion of the installation.
11Here's an overview:
12
13
14.. toctree::
15
16 hashlib.rst
17 hmac.rst
18
19.. index::
20 pair: AES; algorithm
21 single: cryptography
22 single: Kuchling, Andrew
23
24Hardcore cypherpunks will probably find the cryptographic modules written by
25A.M. Kuchling of further interest; the package contains modules for various
26encryption algorithms, most notably AES. These modules are not distributed with
27Python but available separately. See the URL
Benjamin Petersona08eb732011-06-16 18:49:46 -050028http://www.pycrypto.org for more information.
Georg Brandl116aa622007-08-15 14:28:22 +000029