tinyec
tinyec copied to clipboard
tinyec update
secp256k1 curve added + scalar division on curve def __truediv__(self, other): return self.__mul__(mod_inv(other, self.curve.field.n)) https://github.com/AlexCurl/bitcoin_tools/tree/main/tinyec
that's what I need