Last updated:
0 purchases
pytea2 0.2.0
pytea
极其快速的TEA加密解密工具
速度是其他PYTEA算法实现的300倍
usage
import pytea
tea = pytea.TEA(bytes(16), 16)
data = tea.encrypt("哈哈哈".encode())
print(tea.decrypt(data).decode())
安装
python -m pip install pytea2
本地编译
git clone https://github.com/synodriver/pytea.git
python -m pip install -r requirements.txt
python setup.py sdist bdist_wheel
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.