~robey/pycrypto/devel

1 by amk
[project @ 1998-12-13 18:19:48 by amk]
1
"""Cryptographic protocols
143 by akuchling
[project @ 2002-05-24 14:16:22 by akuchling]
2
3
Implements various cryptographic protocols.  (Don't expect to find
4
network protocols here.)
5
6
Crypto.Protocol.AllOrNothing   Transforms a message into a set of message
7
                               blocks, such that the blocks can be
8
                               recombined to get the message back.
9
209 by akuchling
[project @ 2003-02-28 15:21:58 by akuchling]
10
Crypto.Protocol.Chaffing       Takes a set of authenticated message blocks
143 by akuchling
[project @ 2002-05-24 14:16:22 by akuchling]
11
                               (the wheat) and adds a number of
12
                               randomly generated blocks (the chaff).
13
"""
14
15
__all__ = ['AllOrNothing', 'Chaffing']
16
__revision__ = "$Id: __init__.py,v 1.4 2003-02-28 15:23:21 akuchling Exp $"
209 by akuchling
[project @ 2003-02-28 15:21:58 by akuchling]
17