blob: 21cc251e072f9592707e0ecd38d4aa2017d3559c [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +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 md5.rst
20 sha.rst
21.. index::
22 pair: AES; algorithm
23 single: cryptography
24 single: Kuchling, Andrew
25
26Hardcore cypherpunks will probably find the cryptographic modules written by
27A.M. Kuchling of further interest; the package contains modules for various
28encryption algorithms, most notably AES. These modules are not distributed with
29Python but available separately. See the URL
Benjamin Peterson898d43c2011-06-16 18:49:46 -050030http://www.pycrypto.org for more information.
Georg Brandl8ec7f652007-08-15 14:28:01 +000031