]> Git Repo - secp256k1.git/blob - src/ecdsa.h
More public implementations
[secp256k1.git] / src / ecdsa.h
1 #ifndef _SECP256K1_ECDSA_
2 #define _SECP256K1_ECDSA_
3
4 #include "num.h"
5
6 typedef struct {
7     secp256k1_num_t r, s;
8 } secp256k1_ecdsa_sig_t;
9
10 void static secp256k1_ecdsa_sig_init(secp256k1_ecdsa_sig_t *r);
11 void static secp256k1_ecdsa_sig_free(secp256k1_ecdsa_sig_t *r);
12
13 int static secp256k1_ecdsa_pubkey_parse(secp256k1_gej_t *elem, const unsigned char *pub, int size);
14 void static secp256k1_ecdsa_pubkey_serialize(secp256k1_ge_t *elem, unsigned char *pub, int *size, int compressed);
15 int static secp256k1_ecdsa_sig_parse(secp256k1_ecdsa_sig_t *r, const unsigned char *sig, int size);
16 int static secp256k1_ecdsa_sig_serialize(unsigned char *sig, int *size, const secp256k1_ecdsa_sig_t *a);
17 int static secp256k1_ecdsa_sig_verify(const secp256k1_ecdsa_sig_t *sig, const secp256k1_gej_t *pubkey, const secp256k1_num_t *message);
18 int static secp256k1_ecdsa_sig_sign(secp256k1_ecdsa_sig_t *sig, const secp256k1_num_t *seckey, const secp256k1_num_t *message, const secp256k1_num_t *nonce);
19 void static secp256k1_ecdsa_sig_set_rs(secp256k1_ecdsa_sig_t *sig, const secp256k1_num_t *r, const secp256k1_num_t *s);
20
21 #endif
This page took 0.024393 seconds and 4 git commands to generate.