add header

This commit is contained in:
Pieter Wuille 2013-03-11 22:27:43 +01:00
parent 821113d425
commit a6d68949c1
1 changed files with 8 additions and 0 deletions

8
secp256k1.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef _SECP256K1_
#define _SECP256K1_
namespace secp256k1 {
int VerifyECDSA(const unsigned char *msg, int msglen, const unsigned char *sig, int siglen, const unsigned char *pubkey, int pubkeylen);
}
#endif