bitcoin/include/secp256k1.h

17 lines
321 B
C
Raw Normal View History

2013-03-11 22:27:43 +01:00
#ifndef _SECP256K1_
#define _SECP256K1_
2013-04-01 07:52:58 +02:00
#ifdef __cplusplus
2013-03-31 06:34:15 +02:00
extern "C" {
2013-04-01 07:52:58 +02:00
#endif
2013-03-31 06:34:15 +02:00
void secp256k1_start(void);
void secp256k1_stop(void);
int secp256k1_ecdsa_verify(const unsigned char *msg, int msglen, const unsigned char *sig, int siglen, const unsigned char *pubkey, int pubkeylen);
2013-04-01 07:52:58 +02:00
#ifdef __cplusplus
2013-03-11 22:27:43 +01:00
}
2013-04-01 07:52:58 +02:00
#endif
2013-03-11 22:27:43 +01:00
#endif