-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencrypto_file.py
86 lines (58 loc) · 1.76 KB
/
encrypto_file.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
79
80
81
82
83
84
85
86
import pandas as pd
from cryptography.fernet import Fernet
from data_process_func import *
"""
from cryptography.fernet import Fernet
key = Fernet.generate_key()
with open('mykey.key','wb') as mykey:
mykey.write(key)
with open('mykey.key','rb') as filekey:
key = filekey.read()
fernet = Fernet(key)
with open('credentials_2023new.csv','rb') as file:
orgin = file.read()
encrypted = fernet.encrypt(orgin)
with open('encryp_cred_2023.csv','wb') as encryp_file:
encryp_file.write(encrypted)
sz1,sz2 = file1.shape
for i in range(sz1):
file1.iloc[i,1] = random_password_generator(8)
file1.to_csv('credentials.csv',index = False)
"""
#decrypting data
def checkpassword(username:str,password:str)->int:
import pandas as pd
from cryptography.fernet import Fernet
from io import StringIO
cred_dict = {}
with open('mykey.key','rb') as filekey:
key = filekey.read()
fernet = Fernet(key)
with open('encryp_cred_2023.csv','rb') as encrypt_file:
encrep_data = encrypt_file.read()
decrypted_data = fernet.decrypt(encrep_data)
from io import StringIO
s = str(decrypted_data,'utf-8')
data = StringIO(s)
df = pd.read_csv(data)
sz1,_ = df.shape
for i in range(sz1):
cred_dict[df.iloc[i,0]]= df.iloc[i,1]
if username not in cred_dict:
return 0
elif password!= cred_dict[username]:
return 0
try:
record_login(username)
except:
pass
if username =='admin':
return 1
else:
return 2
return 0
def random_password_generator(a:int)->str:
import random
import string
password = ''.join([random.choice(string.ascii_letters + string.digits ) for n in range(a)])
return password