openhaystack-python icon indicating copy to clipboard operation
openhaystack-python copied to clipboard

Unsupported elliptic curve point type error

Open Philip2809 opened this issue 1 year ago • 2 comments

I am getting this error:

Unsupported elliptic curve point type

My eph_key does not start with "0x02, 0x03, 0x04" it starts with: "b'\x01". Any idea what is causing this? I am using macless-haystack and have generated public and private keys, I can decode normally everything in the macless haystack application but want to look into how to do it in python for an automated thing like this

Philip2809 avatar Oct 31 '24 11:10 Philip2809

soo https://github.com/biemster/FindMy/issues/52 you need to add if len(data) > 88: data = data[0:4] + data[5:] into decrypt_message function and then it works, however there is some other "confidence" value othen than the one that is listed: https://github.com/biemster/FindMy/issues/52#issuecomment-2055261265

Philip2809 avatar Oct 31 '24 11:10 Philip2809

#7 to fix this and add some more features, should also fix #3

Philip2809 avatar Nov 19 '24 12:11 Philip2809