17 lines
321 B
C
17 lines
321 B
C
#ifndef _SECP256K1_
|
|
#define _SECP256K1_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
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);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|