Source tree reorganization

This commit is contained in:
Pieter Wuille
2013-03-31 05:03:27 +02:00
parent 938d3c27aa
commit 2d93809255
26 changed files with 29 additions and 21 deletions

8
include/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