particionado

This commit is contained in:
Omar Sánchez Pizarro
2023-10-09 14:13:36 +02:00
parent 927c281631
commit d09c66b125
4711 changed files with 2368269 additions and 19 deletions

8
venv/bin/pyrsa-encrypt Executable file
View File

@@ -0,0 +1,8 @@
#!/home/omar/PycharmProjects/autoficher/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from rsa.cli import encrypt
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(encrypt())