-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencrypt_decrypt.py
69 lines (49 loc) · 2.03 KB
/
encrypt_decrypt.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from Crypto.Cipher import DES
from PIL import Image
import os
def encrypt_image(image_path, key):
# Open the image
image = Image.open(image_path)
# Convert the image to RGB mode (if it's not already)
image = image.convert('RGB')
# Convert the image data to bytes
image_bytes = image.tobytes()
# Calculate the required padding size
block_size = DES.block_size
padding_size = (block_size - len(image_bytes) % block_size) % block_size
# Pad the image bytes with zero bytes
padded_image_bytes = image_bytes + bytes([0] * padding_size)
# Create a cipher object
cipher = DES.new(key, DES.MODE_ECB)
# Encrypt the image
encrypted_image_bytes = cipher.encrypt(padded_image_bytes)
# Create a new image from the encrypted bytes
encrypted_image = Image.frombytes('RGB', image.size, encrypted_image_bytes)
return encrypted_image
def decrypt_image(encrypted_image, key):
# Convert the encrypted image to bytes
encrypted_image_bytes = encrypted_image.tobytes()
# Create a cipher object for decryption
cipher = DES.new(key, DES.MODE_ECB)
# Decrypt the image
decrypted_image_bytes = cipher.decrypt(encrypted_image_bytes)
# Remove the zero padding bytes from the decrypted bytes
unpadded_image_bytes = decrypted_image_bytes.rstrip(b'\x00')
# Create a new image from the decrypted bytes
decrypted_image = Image.frombytes('RGB', encrypted_image.size, unpadded_image_bytes)
return decrypted_image
# Example usage
image_path = r'D:\file_encrypt_decrypt\1.jpg'
key = b'\x91\x1fV#\x11\x86\x7f\x8f'
try:
# Encrypt the image
encrypted_image = encrypt_image(image_path, key)
encrypted_image.save(r'D:\file_encrypt_decrypt\encrypt.png')
# Decrypt the image
decrypted_image = decrypt_image(encrypted_image, key)
decrypted_image.save(r'D:\file_encrypt_decrypt\decrypt.png')
decrypted_image.show() # Display the decrypted image
except FileNotFoundError:
print("File not found.")
except Exception as e:
print(f"Error occurred: {str(e)}")