forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNieuw Rich Text-document.rtf
80 lines (80 loc) · 4.21 KB
/
Nieuw Rich Text-document.rtf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{\rtf1\ansi\ansicpg1252\deff0\nouicompat{\fonttbl{\f0\fnil\fcharset0 Calibri;}}
{\colortbl ;\red0\green0\blue255;}
{\*\generator Riched20 10.0.18362}\viewkind4\uc1
\pard\sa200\sl276\slmult1\f0\fs22\lang19 // Copyright (c) 2009-2010 bram darras\par
// Copyright (c) 2009-2018 The Bitcoin Core developers\par
// Distributed under the MIT software license, see the accompanying\par
// file COPYING or {{\field{\*\fldinst{HYPERLINK http://www.opensource.org/licenses/mit-license.php }}{\fldrslt{http://www.opensource.org/licenses/mit-license.php\ul0\cf0}}}}\f0\fs22 .\par
\par
#ifndef BITCOIN_SCRIPT_BITCOINCONSENSUS_H\par
#define BITCOIN_SCRIPT_BITCOINCONSENSUS_H\par
\par
#include <stdint.h>\par
\par
#if defined(BUILD_BITCOIN_INTERNAL) && defined(HAVE_CONFIG_H)\par
#include <config/bitcoin-config.h>\par
#if defined(_WIN32)\par
#if defined(DLL_EXPORT)\par
#if defined(HAVE_FUNC_ATTRIBUTE_DLLEXPORT)\par
#define EXPORT_SYMBOL __declspec(dllexport)\par
#else\par
#define EXPORT_SYMBOL\par
#endif\par
#endif\par
#elif defined(HAVE_FUNC_ATTRIBUTE_VISIBILITY)\par
#define EXPORT_SYMBOL __attribute__ ((visibility ("default")))\par
#endif\par
#elif defined(MSC_VER) && !defined(STATIC_LIBBITCOINCONSENSUS)\par
#define EXPORT_SYMBOL __declspec(dllimport)\par
#endif\par
\par
#ifndef EXPORT_SYMBOL\par
#define EXPORT_SYMBOL\par
#endif\par
\par
#ifdef __cplusplus\par
extern "C" \{\par
#endif\par
\par
#define BITCOINCONSENSUS_API_VER 1\par
\par
typedef enum bitcoinconsensus_error_t\par
\{\par
bitcoinconsensus_ERR_OK = 0,\par
bitcoinconsensus_ERR_TX_INDEX,\par
bitcoinconsensus_ERR_TX_SIZE_MISMATCH,\par
bitcoinconsensus_ERR_TX_DESERIALIZE,\par
bitcoinconsensus_ERR_AMOUNT_REQUIRED,\par
bitcoinconsensus_ERR_INVALID_FLAGS,\par
\} bitcoinconsensus_error;\par
\par
/** Script verification flags */\par
enum\par
\{\par
bitcoinconsensus_SCRIPT_FLAGS_VERIFY_NONE = 0,\par
bitcoinconsensus_SCRIPT_FLAGS_VERIFY_P2SH = (1U << 0), // evaluate P2SH (BIP16) subscripts\par
bitcoinconsensus_SCRIPT_FLAGS_VERIFY_DERSIG = (1U << 2), // enforce strict DER (BIP66) compliance\par
bitcoinconsensus_SCRIPT_FLAGS_VERIFY_NULLDUMMY = (1U << 4), // enforce NULLDUMMY (BIP147)\par
bitcoinconsensus_SCRIPT_FLAGS_VERIFY_CHECKLOCKTIMEVERIFY = (1U << 9), // enable CHECKLOCKTIMEVERIFY (BIP65)\par
bitcoinconsensus_SCRIPT_FLAGS_VERIFY_CHECKSEQUENCEVERIFY = (1U << 10), // enable CHECKSEQUENCEVERIFY (BIP112)\par
bitcoinconsensus_SCRIPT_FLAGS_VERIFY_WITNESS = (1U << 11), // enable WITNESS (BIP141)\par
bitcoinconsensus_SCRIPT_FLAGS_VERIFY_ALL = bitcoinconsensus_SCRIPT_FLAGS_VERIFY_P2SH | bitcoinconsensus_SCRIPT_FLAGS_VERIFY_DERSIG |\par
bitcoinconsensus_SCRIPT_FLAGS_VERIFY_NULLDUMMY | bitcoinconsensus_SCRIPT_FLAGS_VERIFY_CHECKLOCKTIMEVERIFY |\par
bitcoinconsensus_SCRIPT_FLAGS_VERIFY_CHECKSEQUENCEVERIFY | bitcoinconsensus_SCRIPT_FLAGS_VERIFY_WITNESS\par
\};\par
\par
/// Returns 1 if the input nIn of the serialized transaction pointed to by\par
/// txTo correctly spends the scriptPubKey pointed to by scriptPubKey under\par
/// the additional constraints specified by flags.\par
/// If not nullptr, err will contain an error/success code for the operation\par
EXPORT_SYMBOL int bitcoinconsensus_verify_script(const unsigned char *scriptPubKey, unsigned int scriptPubKeyLen,\par
const unsigned char *txTo , unsigned int txToLen,\par
unsigned int nIn, unsigned int flags, bitcoinconsensus_error* err);\par
\par
EXPORT_SYMBOL int bitcoinconsensus_verify_script_with_amount(const unsigned char *scriptPubKey, unsigned int scriptPubKeyLen, int64_t amount,\par
const unsigned char *txTo , unsigned int txToLen,\par
unsigned int nIn, unsigned int flags, bitcoinconsensus_error* err);\par
\par
EXPORT_SYMBOL unsigned int bitcoinconsensus_version();\par
}