-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbox.py
78 lines (61 loc) · 2.12 KB
/
box.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
70
71
72
73
74
75
76
77
78
############################################################################
# KeysBox Created By Matin Afzal
# https://github.com/MatinAfzal
# contact.matin@yahoo.com
############################################################################
import json
from cryptography.fernet import Fernet
# File identity information
__author__ = "Matin Afzal (contact.matin@yahoo.com)"
__version__ = "0.0.1"
__last_modification__ = "2023/08/09"
class Box:
"""
The Box Of Keys
"""
def __init__(self, path, key=None, first=False) -> None:
self.path = path
self.key = key
self.temp = None
if first:
self.box_encrypt()
# self.box_decrypt()
#
# with open(self.path, 'r') as openfile:
# temp = json.load(openfile)
#
# self.box_encrypt()
self.box = self.box_dict()
def box_dict(self):
self.box_decrypt()
self.box = self.read_normaly()
self.box_encrypt()
return self.box
def box_update(self, dict) -> None:
self.box_decrypt()
with open(self.path, "w") as outfile:
json.dump(dict, outfile)
self.box_encrypt()
def box_encrypt(self): # Locking
with open(self.path, 'rb') as enc_file:
encrypted = enc_file.read()
enc_file.close()
fernet = Fernet(self.key)
encrypted = fernet.encrypt(encrypted)
with open(self.path, 'wb') as encrypted_file:
encrypted_file.write(encrypted)
encrypted_file.close()
def box_decrypt(self): # Unlocking
with open(self.path, 'rb') as enc_file:
encrypted = enc_file.read()
enc_file.close()
fernet = Fernet(self.key)
data = fernet.decrypt(encrypted)
with open(self.path, 'wb') as dec_file:
dec_file.write(data)
dec_file.close()
self.box = self.read_normaly()
def read_normaly(self):
with open(self.path, 'r') as openfile:
temp = json.load(openfile)
return temp