1998-12-13 19:19:48 -07:00
|
|
|
|
2002-05-24 14:16:22 -07:00
|
|
|
"""Cryptographic protocols
|
|
|
|
|
|
|
|
|
|
Implements various cryptographic protocols. (Don't expect to find
|
|
|
|
|
network protocols here.)
|
|
|
|
|
|
|
|
|
|
Crypto.Protocol.AllOrNothing Transforms a message into a set of message
|
|
|
|
|
blocks, such that the blocks can be
|
|
|
|
|
recombined to get the message back.
|
2003-02-28 16:28:35 -07:00
|
|
|
|
2002-05-24 14:16:22 -07:00
|
|
|
Crypto.Protocol.Chaffing Takes a set of authenticated message blocks
|
|
|
|
|
(the wheat) and adds a number of
|
|
|
|
|
randomly generated blocks (the chaff).
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
__all__ = ['AllOrNothing', 'Chaffing']
|
2008-08-06 21:27:50 -04:00
|
|
|
__revision__ = "$Id$"
|