mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
8 lines
210 B
C++
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
|