Skip to content

Latest commit

 

History

History
executable file
·
47 lines (35 loc) · 2.86 KB

shared-libraries.md

File metadata and controls

executable file
·
47 lines (35 loc) · 2.86 KB

Shared Libraries

zerooneconsensus

The purpose of this library is to make the verification functionality that is critical to 01coin's consensus available to other applications, e.g. to language bindings.

API

The interface is defined in the C header zerooneconsensus.h located in src/script/zerooneconsensus.h.

Version

zerooneconsensus_version returns an unsigned int with the API version (currently at an experimental 0).

Script Validation

zerooneconsensus_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.

Parameters
  • const unsigned char *scriptPubKey - The previous output script that encumbers spending.
  • unsigned int scriptPubKeyLen - The number of bytes for the scriptPubKey.
  • const unsigned char *txTo - The transaction with the input that is spending the previous output.
  • unsigned int txToLen - The number of bytes for the txTo.
  • unsigned int nIn - The index of the input in txTo that spends the scriptPubKey.
  • unsigned int flags - The script validation flags (see below).
  • zerooneconsensus_error* err - Will have the error/success code for the operation (see below).
Script Flags
  • zerooneconsensus_SCRIPT_FLAGS_VERIFY_NONE
  • zerooneconsensus_SCRIPT_FLAGS_VERIFY_P2SH - Evaluate P2SH (BIP16) subscripts
  • zerooneconsensus_SCRIPT_FLAGS_VERIFY_DERSIG - Enforce strict DER (BIP66) compliance
  • zerooneconsensus_SCRIPT_FLAGS_VERIFY_NULLDUMMY - Enforce NULLDUMMY (BIP147)
  • zerooneconsensus_SCRIPT_FLAGS_VERIFY_CHECKLOCKTIMEVERIFY - Enable CHECKLOCKTIMEVERIFY (BIP65)
  • zerooneconsensus_SCRIPT_FLAGS_VERIFY_CHECKSEQUENCEVERIFY - Enable CHECKSEQUENCEVERIFY (BIP112)
Errors
  • zerooneconsensus_ERR_OK - No errors with input parameters (see the return value of zerooneconsensus_verify_script for the verification status)
  • zerooneconsensus_ERR_TX_INDEX - An invalid index for txTo
  • zerooneconsensus_ERR_TX_SIZE_MISMATCH - txToLen did not match with the size of txTo
  • zerooneconsensus_ERR_DESERIALIZE - An error deserializing txTo

Example Implementations