__init__.py

来自「python的加密库」· Python 代码 · 共 18 行

PY
18
字号
"""Public-key encryption and signature algorithms.Public-key encryption uses two different keys, one for encryption andone for decryption.  The encryption key can be made public, and thedecryption key is kept private.  Many public-key algorithms can alsobe used to sign messages, and some can *only* be used for signatures.Crypto.PublicKey.DSA      Digital Signature Algorithm. (Signature only)Crypto.PublicKey.ElGamal  (Signing and encryption)Crypto.PublicKey.RSA      (Signing, encryption, and blinding)Crypto.PublicKey.qNEW     (Signature only)"""__all__ = ['RSA', 'DSA', 'ElGamal', 'qNEW']__revision__ = "$Id: __init__.py,v 1.4 2003/04/03 20:27:13 akuchling Exp $"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?