-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathencrypt_data.py
50 lines (37 loc) · 1.26 KB
/
encrypt_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# coding: utf-8
import os
from Crypto.Cipher import AES
from Crypto.Util.Padding import pad
def encrypt_data(file_name, key):
"""Criptografa os dados do arquivo."""
# Verifica se o arquivo existe e
# se já não está encriptado.
if os.path.isfile(file_name):
if not file_name.endswith(".enc"):
# Leitura da sequência binária
with open(file_name, "rb") as fo:
plaintext = fo.read() # Conteúdo do arquivo
# Verifica erros de valor ao encriptar
try:
# Inicializa um objeto cifra com a chave
cipher = AES.new(key, AES.MODE_CBC)
# ==== Encriptando os dados ==== #
data_ciphered = cipher.encrypt(pad(plaintext, AES.block_size))
# Adiciona a extensão ".enc" ao arquivo
with open(file_name + ".enc", "wb") as fo:
# Escreve o vetor de inicialização e
# os dados encriptados no arquivo
fo.write(cipher.iv)
fo.write(data_ciphered)
# Deleta o arquivo original
os.remove(file_name)
except ValueError:
pass
else:
# Mostra que a encriptação ocorreu com sucesso
if file_name != "DATA_GHOST.txt":
print(f"[ OK ] {file_name}")
else:
print(f"[ ? ] O arquivo '{file_name}' já foi encriptado.")
else:
print(f"[ ERRO ] O arquivo '{file_name}' não existe. Tente com outro nome.")