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 문제를 만들기 전에 아직보고/제안되지 않았는지 확인하십시오.
문제 추적기는 버그 보고서 및 향상 제안에만 해당됩니다. 질문이 있으면 문제를 여는 대신 불화 서버에서 문의하십시오. 어쨌든 그곳에서 리디렉션됩니다.
ENYO 코드베이스 또는 문서에 기여하려면 저장소를 자유롭게 포크하고 풀 요청을 제출하십시오.
문서에서 무언가를 이해하지 못하는 경우 문제가 발생하거나 올바른 방향으로 부드러운 멍청이가 필요하다면 Discord 서버에 가입하는 것을 망설이지 마십시오.