enyo
1.0.0
Enyo是一种基于多阶段分区的轻质加密算法。 Enyo Cipher表现出对蛮力攻击的良好抵抗力。它非常适合计算能力是瓶颈的小型应用。
enyoencryption Enyo加密模块enyodecryption Enyo解密模块需要Python3。
开放terminal并执行:
pip install enyo开放terminal并执行:
git clone https://github.com/apratimshukla6/enyo.git
cd enyo
pip install --editable . from enyo . enyoencryption import EnyoEncryption
# Third parameter is an optional integer for partition (by default 2), the fourth parameter is optional Boolean for transposition (default False)
test = EnyoEncryption ( "test" , "secretkey" , partition = 2 , transposition = True )
# To print the encrypted text
print ( test . encrypted ) SaSQpN from enyo . enyodecryption import EnyoDecryption
# Third parameter is an optional integer for partition (by default 2), the fourth parameter is optional Boolean for transposition (default False)
test = EnyoDecryption ( "SaSQpN" , "secretkey" , partition = 2 , transposition = True )
# To print the decrypted text
print ( test . decrypted ) test 在创建问题之前,请确保尚未报告/建议。
问题跟踪器仅用于错误报告和增强建议。如果您有疑问,请在Discord服务器中询问它,而不是打开问题 - 无论如何您都会在那里重定向。
如果您想为Enyo代码库或文档做出贡献,请随时订购存储库并提交拉动请求。
如果您不了解文档中的某些内容,您正在遇到问题,或者您只需要在正确的方向上轻柔地轻推,请随时加入我们的Discord服务器。