__init__.py
来自「python的加密库」· Python 代码 · 共 18 行
PY
18 行
"""Cryptographic protocolsImplements various cryptographic protocols. (Don't expect to findnetwork 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.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']__revision__ = "$Id: __init__.py,v 1.4 2003/02/28 15:23:21 akuchling Exp $"
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?