We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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