0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-03 09:56:38 -05:00

add header

This commit is contained in:
Pieter Wuille 2013-03-11 22:27:43 +01:00
parent 821113d425
commit a6d68949c1

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