forked from mahi01agarwal/PPML-using-Paillier-Cryptosystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServerModelRun.py
60 lines (52 loc) · 1.86 KB
/
ServerModelRun.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
import phe as paillier
import json
import numpy as np
# Function to load data from JSON file
def getData():
with open('data.json', 'r') as file:
d = json.load(file)
data = json.loads(d)
return data
# Function to load coefficients from JSON file
def getCoef():
with open('Coefficients.json', 'r') as file:
d = json.load(file)
coef = np.array(d)
return coef
# Function to load intercept from JSON file
def get_Intercept():
with open('Intercept.json', 'r') as file:
d = json.load(file)
return d
# Function to encrypt intercept using Paillier encryption
def get_encryted_intercept():
data = getData()
intercept = get_Intercept()
public_key = paillier.PaillierPublicKey(n=int(data['public_key']['n']))
encrypted_intercept = public_key.encrypt(intercept)
return encrypted_intercept
# Function to compute encrypted results using loaded data, coefficients, and encrypted intercept
def computeData():
data = getData()
mycoef = getCoef()
intercept = get_encryted_intercept()
pk = data['public_key']
pubkey = paillier.PaillierPublicKey(n=int(pk['n']))
enc_nums_rec = [paillier.EncryptedNumber(pubkey, int(x[0]), int(x[1])) for x in data['values']]
results = (sum([mycoef[i] * enc_nums_rec[i] for i in range(len(mycoef))]) + intercept)
return results, pubkey
# Function to serialize computed data and save it to a JSON file
def serializeData():
results, pubkey = computeData()
encrypted_data = {}
encrypted_data['pubkey'] = {'n': pubkey.n}
encrypted_data['values'] = (str(results.ciphertext()), results.exponent)
serialized = json.dumps(encrypted_data)
return serialized
# Main function to execute the code
def main():
datafile = serializeData()
with open('answer.json', 'w') as file:
json.dump(datafile, file)
if __name__ == "__main__":
main()