add present files

This commit is contained in:
sangge-redmi 2024-04-15 16:54:35 +08:00
parent de1d75360b
commit 0827b14ff2
2 changed files with 46 additions and 0 deletions

23
line_present.py Normal file
View File

@ -0,0 +1,23 @@
import CoreAlgorithm as paillier
from line_profiler import profile
# kernprof -l line_present.py
@profile
def main():
Public_Key, Private_Key = paillier.generate_paillier_keypair() # 随机生成1024长的公钥和私钥
x = 90000.23
y = 90
z = 0.5
x_encrypted = Public_Key.encrypt(x) # 加密后的x
y_encrypted = Public_Key.encrypt(y) # 加密后的y
z_encrypted = Public_Key.encrypt(z) # 加密后的z
t_encrypted = (
x_encrypted + y_encrypted * 0.5
)
print(f"x + y * 0.5的结果是:{Private_Key.decrypt(t_encrypted)}") # 打印出t
if __name__ == "__main__": # 主函数
main()

23
mem_present.py Normal file
View File

@ -0,0 +1,23 @@
import CoreAlgorithm as paillier
from memory_profiler import profile
# python -m memory_profiler mem_present.py
@profile
def main():
Public_Key, Private_Key = (
paillier.generate_paillier_keypair()
) # 随机生成1024长的公钥和私钥
x = 90000.23
y = 90
z = 0.5
x_encrypted = Public_Key.encrypt(x) # 加密后的x
y_encrypted = Public_Key.encrypt(y) # 加密后的y
z_encrypted = Public_Key.encrypt(z) # 加密后的z
t_encrypted = x_encrypted + y_encrypted * 0.5
print(f"x + y * 0.5的结果是:{Private_Key.decrypt(t_encrypted)}") # 打印出t
if __name__ == "__main__": # 主函数
main()