bitcoinjs-lib/test
Daniel Cousens 10fe4474d1 ECKey: remove *Buffer/*Hex functions
An ECKey is a composition of a private key (D), a public key (Q) and its
compression flag.

These functions gave the impression of serialization of this
composition, when really they only serialized `D`.
They have therefore been removed in favour of always using a sane
serialization format (WIF) that matches the needed behaviour.

If a user needs the previous functionality, simply use `privKey.D.*`
instead of `privKey.*`, as BigInteger supports `*Buffer/*Hex` functions
as expected.
2014-05-18 17:50:10 +10:00
..
fixtures ECKey: remove *Buffer/*Hex functions 2014-05-18 17:50:10 +10:00
integration Transaction: rename (de)serialize to [to/from]Buffer 2014-05-17 00:09:13 +10:00
address.js Address/Script: consistent function ordering 2014-05-17 00:09:13 +10:00
base58.js tests: use filepaths directly 2014-05-13 18:05:56 +10:00
base58check.js tests: use filepaths directly 2014-05-13 18:05:56 +10:00
bufferutils.js tests: use filepaths directly 2014-05-13 18:05:56 +10:00
convert.js tests: use filepaths directly 2014-05-13 18:05:56 +10:00
crypto.js tests: use filepaths directly 2014-05-13 18:05:56 +10:00
ec.js tests: use filepaths directly 2014-05-13 18:05:56 +10:00
ecdsa.js ECKey: remove *Buffer/*Hex functions 2014-05-18 17:50:10 +10:00
eckey.js ECKey: remove *Buffer/*Hex functions 2014-05-18 17:50:10 +10:00
ecpubkey.js ECPubKey: improve tests and extract test data to fixtures 2014-05-18 17:50:10 +10:00
hdwallet.js ECKey: remove *Buffer/*Hex functions 2014-05-18 17:50:10 +10:00
message.js tests: use filepaths directly 2014-05-13 18:05:56 +10:00
script.js Script: use PubKey objects not prebuilt Buffers 2014-05-17 00:09:13 +10:00
transaction.js Transaction: rename (de)serialize to [to/from]Buffer 2014-05-17 00:09:13 +10:00
wallet.js Transaction: rename (de)serialize to [to/from]Buffer 2014-05-17 00:09:13 +10:00