~malept/ubuntu/lucid/python2.6/dev-dependency-fix

« back to all changes in this revision

Viewing changes to Doc/library/crypto.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-13 12:51:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090213125100-uufgcb9yeqzujpqw
Tags: upstream-2.6.1
ImportĀ upstreamĀ versionĀ 2.6.1

Show diffs side-by-side

added added

removed removed

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