⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setup.py

📁 A pure python module which implements the DES and Triple-DES encryption algorithms. Triple DES is ei
💻 PY
字号:
#!/usr/bin/env pythonfrom distutils.core import setupsetup(name="pyDes",      version="2.0.0",      description="Pure python implementation of DES and TRIPLE DES encryption algorithm",      author="Todd Whiteman",      author_email="twhitema@gmail.com",      url="http://twhiteman.netfirms.com/des.html",      platforms=["All"],      keywords=["DES", "TRIPLE-DES", "ENCRYPTION", "ALGORITHM", "SECURITY"],      py_modules=["pyDes"]      )

⌨️ 快捷键说明

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