108 lines
4 KiB
Ruby
108 lines
4 KiB
Ruby
class LibbitcoinConsensus < Formula
|
|
desc "Bitcoin Consensus Library (optional)"
|
|
homepage "https://github.com/libbitcoin/libbitcoin-consensus"
|
|
url "https://github.com/libbitcoin/libbitcoin-consensus/archive/v3.5.0.tar.gz"
|
|
sha256 "bb29761d4275a9c993151707557008b23572a3d9adecc0e36a3075cfb101dd1e"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "3e84a8b81167e6cbf98cbba5fcd6f40741758704e9acec422b7399604449b74b" => :mojave
|
|
sha256 "36e607d57dcf9347cedede744be5461c8c9e866047d4b31942987110153c9bfe" => :high_sierra
|
|
sha256 "0ed7771f106cd05c2413b9da72013f168077dc8f6a21d5a01806c715d038e680" => :sierra
|
|
sha256 "1306b0c9f124e71aeaa22825c0d0f13c49d747ad762ea1fc6a8ea0853d47c4c7" => :el_capitan
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "boost" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "pkg-config" => :build
|
|
|
|
resource "secp256k1" do
|
|
url "https://github.com/libbitcoin/secp256k1/archive/v0.1.0.13.tar.gz"
|
|
sha256 "9e48dbc88d0fb5646d40ea12df9375c577f0e77525e49833fb744d3c2a69e727"
|
|
end
|
|
|
|
def install
|
|
resource("secp256k1").stage do
|
|
system "./autogen.sh"
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{libexec}",
|
|
"--enable-module-recovery",
|
|
"--with-bignum=no"
|
|
system "make", "install"
|
|
end
|
|
|
|
ENV.prepend_path "PKG_CONFIG_PATH", "#{libexec}/lib/pkgconfig"
|
|
|
|
system "./autogen.sh"
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <string>
|
|
#include <vector>
|
|
#include <assert.h>
|
|
#include <bitcoin/consensus.hpp>
|
|
typedef std::vector<uint8_t> data_chunk;
|
|
static unsigned from_hex(const char ch)
|
|
{
|
|
if ('A' <= ch && ch <= 'F')
|
|
return 10 + ch - 'A';
|
|
if ('a' <= ch && ch <= 'f')
|
|
return 10 + ch - 'a';
|
|
return ch - '0';
|
|
}
|
|
static bool decode_base16_private(uint8_t* out, size_t size, const char* in)
|
|
{
|
|
for (size_t i = 0; i < size; ++i)
|
|
{
|
|
if (!isxdigit(in[0]) || !isxdigit(in[1]))
|
|
return false;
|
|
out[i] = (from_hex(in[0]) << 4) + from_hex(in[1]);
|
|
in += 2;
|
|
}
|
|
return true;
|
|
}
|
|
static bool decode_base16(data_chunk& out, const std::string& in)
|
|
{
|
|
// This prevents a last odd character from being ignored:
|
|
if (in.size() % 2 != 0)
|
|
return false;
|
|
data_chunk result(in.size() / 2);
|
|
if (!decode_base16_private(result.data(), result.size(), in.data()))
|
|
return false;
|
|
out = result;
|
|
return true;
|
|
}
|
|
static libbitcoin::consensus::verify_result test_verify(const std::string& transaction,
|
|
const std::string& prevout_script, uint64_t prevout_value=0,
|
|
uint32_t tx_input_index=0, const uint32_t flags=libbitcoin::consensus::verify_flags_p2sh,
|
|
int32_t tx_size_hack=0)
|
|
{
|
|
data_chunk tx_data, prevout_script_data;
|
|
assert(decode_base16(tx_data, transaction));
|
|
assert(decode_base16(prevout_script_data, prevout_script));
|
|
return libbitcoin::consensus::verify_script(&tx_data[0], tx_data.size() + tx_size_hack,
|
|
&prevout_script_data[0], prevout_script_data.size(), prevout_value,
|
|
tx_input_index, flags);
|
|
}
|
|
int main() {
|
|
const libbitcoin::consensus::verify_result result = test_verify("42", "42");
|
|
assert(result == libbitcoin::consensus::verify_result_tx_invalid);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cxx, "-std=c++11", "test.cpp",
|
|
"-I#{libexec}/include",
|
|
"-L#{lib}", "-L#{libexec}/lib",
|
|
"-lbitcoin-consensus",
|
|
"-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|