mirror of
https://github.com/bitcoin/bips.git
synced 2025-06-30 12:42:43 +00:00
Fix point_from_bytes in bip-schnorr reference implementation
This commit is contained in:
parent
b2e6d11a6e
commit
1a4b08ab72
@ -34,7 +34,7 @@ def bytes_from_point(P):
|
|||||||
return (b'\x03' if P[1] & 1 else b'\x02') + bytes_from_int(P[0])
|
return (b'\x03' if P[1] & 1 else b'\x02') + bytes_from_int(P[0])
|
||||||
|
|
||||||
def point_from_bytes(b):
|
def point_from_bytes(b):
|
||||||
if b[0] in [b'\x02', b'\x03']:
|
if b[0:1] in [b'\x02', b'\x03']:
|
||||||
odd = b[0] - 0x02
|
odd = b[0] - 0x02
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user