import secp256k1 as ice
with open('file1.txt', 'r') as f1, open('file2.txt', 'r') as f2:
for line1, line2 in zip(f1, f2):
x= ice.pub2upub(str(line1.strip()))
x2= ice.pub2upub(str(line2.strip()))
res = ice.point_subtraction(x, x2).hex()
result= ice.to_cpub(res)
file3 = open('result.txt', 'a')
file3.write(result + "\n")
file3.close()
A few days ago as I was reading about P=NP, I came to a theory which states that there might be many solutions to solve an equation, and it's true, I have tried more than 10 methods to solve a key, but they all are complex, but I believe there is a fast method to solve a key. We just need to find it.