You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rusty Russell e252f5de7d base58: remove openssl include, and undefined function declaration. 8 years ago
..
test utils: tal_hexstr() helper. 9 years ago
Makefile bitcoin: add first unit test. 9 years ago
README Fix typo. 9 years ago
address.h misc: remove some unused functions. 9 years ago
base58.c Switched base58 to use libbase58. 8 years ago
base58.h base58: remove openssl include, and undefined function declaration. 8 years ago
block.c bitcoind: use correct endianness for block hashes. 9 years ago
block.h bitcoind: use correct endianness for block hashes. 9 years ago
locktime.c daemon: fix BIP68 support. 9 years ago
locktime.h header cleanup: sort include lines into alpha order, after config.h 9 years ago
privkey.h header cleanup: sort include lines into alpha order, after config.h 9 years ago
pubkey.c key_from_base58 / pubkey_from_privkey: don't support non-compressed keys. 8 years ago
pubkey.h key_from_base58 / pubkey_from_privkey: don't support non-compressed keys. 8 years ago
script.c pubkey: don't carry around DER encoding. 8 years ago
script.h pubkey: don't carry around DER encoding. 8 years ago
shadouble.c bitcoin: use ccan/mem instead of rolling own check_mem function. 9 years ago
shadouble.h header cleanup: sort include lines into alpha order, after config.h 9 years ago
signature.c bitcoin: implement sig_valid. 8 years ago
signature.h bitcoin: implement sig_valid. 8 years ago
tx.c Misc minor cleanups. 8 years ago
tx.h Remove unused script functions now we use witness. 9 years ago
varint.c bitcoin/varint: fix varint reading for multibyte varints. 8 years ago
varint.h varint: new file. 9 years ago

README

These are standard bitcoin manipulation routines which should be
provided by any normal bitcoin library in whatever language you choose.

The ones here are standalone ones taken from bitcoin core and some I
wrote, many taken from bitcoin-iterate and pasted in here.