The purpose of this library is to make the verification functionality that is critical to Navcoin's consensus available to other applications, e.g. to language bindings.
The interface is defined in the C header navcoinconsensus.h
located in src/script/navcoinconsensus.h
.
navcoinconsensus_version
returns an unsigned int
with the API version (currently at an experimental 0
).
navcoinconsensus_verify_script
returns an int
with the status of the verification. It will be 1
if the input script correctly spends the previous output scriptPubKey
.
const unsigned char *scriptPubKey
- The previous output script that encumbers spending.unsigned int scriptPubKeyLen
- The number of bytes for thescriptPubKey
.const unsigned char *txTo
- The transaction with the input that is spending the previous output.unsigned int txToLen
- The number of bytes for thetxTo
.unsigned int nIn
- The index of the input intxTo
that spends thescriptPubKey
.unsigned int flags
- The script validation flags (see below).navcoinconsensus_error* err
- Will have the error/success code for the operation (see below).
navcoinconsensus_SCRIPT_FLAGS_VERIFY_NONE
navcoinconsensus_SCRIPT_FLAGS_VERIFY_P2SH
- Evaluate P2SH (BIP16) subscriptsnavcoinconsensus_SCRIPT_FLAGS_VERIFY_DERSIG
- Enforce strict DER (BIP66) compliance
navcoinconsensus_ERR_OK
- No errors with input parameters (see the return value ofnavcoinconsensus_verify_script
for the verification status)navcoinconsensus_ERR_TX_INDEX
- An invalid index fortxTo
navcoinconsensus_ERR_TX_SIZE_MISMATCH
-txToLen
did not match with the size oftxTo
navcoinconsensus_ERR_DESERIALIZE
- An error deserializingtxTo
- NNavcoin (.NET Bindings)
- node-libnavcoinconsensus (Node.js Bindings)
- java-libnavcoinconsensus (Java Bindings)
- navcoinconsensus-php (PHP Bindings)