crpyt
1.0.0
'crypt'라고 발음합니다.
쉘을 호출하는 매우 간단한 파이썬 스크립트로 GPG를 사용하여 트리 내의 파일을 암호화 할 수 있습니다. 스크립트는 256 비트 AE의 파일을 암호화하도록 하드 코딩되었습니다.
이 예에서는 test/ 디렉토리가 암호화 되어 .gpg 파일 만 남습니다.
➜ python3 src/cli.py --path test --encrypt --delete_original --key # $MY_GPG_KEY
# Encrypting pets/dogs/inu.txt
# Encrypting pets/cats/neko.txt
# Encrypted 2 files. 그런 다음 트리가 해독하여 .gpg 파일을 제거합니다.
➜ python3 src/cli.py --path test --decrypt --delete_original --key # $MY_GPG_KEY
# Decrypting pets/dogs/inu.txt.gpg
# Deleting pets/dogs/inu.txt.gpg
# Decrypting pets/cats/neko.txt.gpg
# Deleting pets/cats/neko.txt.gpg
# Decrypted 2 files. src/cli.py 파일은 pip 사용하여 crpyt 명령으로 설치할 수 있습니다.
GitHub에서 설치할 수 있습니다.
➜ pip install git+https://github.com/MolassesLover/Crpyt.git또는 PYPI에서 :
➜ pip install crpyt이 저장소 내의 모든 파일은 선택한 경우 Apache v2.0 라이센스 또는 MIT 라이센스에 따라 라이센스가 부여됩니다.
기부금이 열려 있으므로 커밋에 서명하십시오. 그렇지 않으면 변경 사항이 병합되지 않습니다.