0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-03 09:56:38 -05:00
bitcoin-bitcoin-core/include/secp256k1.h
2013-03-31 05:03:27 +02:00

8 lines
210 B
C++

#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