Premium Only Content

Criptografia de arquivos em Python
Python sem frescura.
Ajude o canal pelo Pix: e1dc2017-053a-4d4f-a018-b35e36527323
Programa que criptografa um arquivo de texto e pode ser recuperado de volta.
Código:
# -*- coding:latin-1 -*-
import time
import getpass, sys
import pyAesCrypt
from os import stat, remove
# encryption/decryption buffer size - 64K
bufferSize = 64 * 1024
escolha = input('digite: \n1- Encript \n2- Decript\nR: ')
password = getpass.getpass('\nDigite a Senha:')
if escolha == '1':
# encrypt
with open("pas.txt", "rb") as fIn:
with open("pas.txt.aes", "wb") as fOut:
pyAesCrypt.encryptStream(fIn, fOut, password, bufferSize)
x = input ('do you want to delete the txt file? y ')
if x != 'y':
print ('\nok')
time.sleep(1)
sys.exit()
remove("pas.txt")
print ('Arquivo removido')
time.sleep(2)
sys.exit()
if escolha == '2':
# get encrypted file size
encFileSize = stat("pas.txt.aes").st_size
# decrypt
with open("pas.txt.aes", "rb") as fIn:
try:
with open("pas.txt", "wb") as fOut:
# decrypt file stream
pyAesCrypt.decryptStream(fIn, fOut, password, bufferSize, encFileSize)
except ValueError:
print ('senha incorreta')
# remove output file on error
remove("pas.txt")
time.sleep(3)
sys.exit()
print ('\n\nEscolha errada')
time.sleep(2)
-
1:05:28
Man in America
10 hours agoTREASON? Obama, Hillary, and Soros in the New World Order Agenda EXPOSED w/ Mel K
59.7K47 -
2:22:46
The Connect: With Johnny Mitchell
10 hours ago $1.35 earnedOne Man's Mission To Stop Human Trafficking: How A Billionaire Mercenary Saved Hundreds Of Children
10.3K8 -
2:35:13
Tundra Tactical
6 hours ago $2.13 earned🔫 California Ammo Win, Sig Sauer P320 Controversy, Meme Review & Would You Rather! 🎉🔥
20.6K4 -
16:24
Forrest Galante
3 hours ago6 Deadliest Man Eaters to Ever Exist
15K3 -
10:14
MattMorseTV
8 hours ago $9.88 earnedThe EU is in HOT WATER.
76.4K44 -
LIVE
The Rabble Wrangler
1 day agoPUBG with The Best in the West!
349 watching -
3:57:19
EvilT4000
6 hours ago $0.90 earnedSaturday.....🟢For energy and focus click my Dubby link!
17.3K3 -
3:02:55
SlingerGames
3 hours agoSpartan Night - Halo and More | Creator for @SELFMADEGGS
11.6K -
3:57:49
Mally_Mouse
9 hours agoSpicy Saturday!! - 10k CELEBRATION! - Let's Play: Labyrinthine
28.9K1 -
37:09
The Mel K Show
9 hours agoMel K & Dr. Kirk Moore | A Doctor’s Oath: Doing What is Right No Matter the Cost | 7-26-25
29.8K15