Final step in converting to C

This commit is contained in:
Pieter Wuille
2013-04-01 07:52:58 +02:00
parent d41e93a5e2
commit eb0be8eec6
23 changed files with 74 additions and 128 deletions

View File

@@ -1,10 +1,16 @@
#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