1 #ifndef _SECP256K1_ECDSA_
2 #define _SECP256K1_ECDSA_
11 bool Parse(const unsigned char *sig, int size);
12 bool Serialize(unsigned char *sig, int *size);
13 bool RecomputeR(Number &r2, const GroupElemJac &pubkey, const Number &message) const;
14 bool Verify(const GroupElemJac &pubkey, const Number &message) const;
15 bool Sign(const Number &seckey, const Number &message, const Number &nonce);
16 void SetRS(const Number &rin, const Number &sin);
17 std::string ToString() const;