Browse Source

Removes Key module (use ECKey)

hk-custom-address
Daniel Cousens 11 years ago
parent
commit
addf4528d4
  1. 1
      src/index.js
  2. 4
      test/misc.js

1
src/index.js

@ -13,7 +13,6 @@ module.exports = {
ECKey: Key.ECKey,
ECPointFp: require('./jsbn/ec').ECPointFp,
ECPubKey: Key.ECPubKey,
Key: Key.ECKey,
Message: require('./message'),
Opcode: require('./opcode'),
HDWallet: require('./hdwallet'),

4
test/misc.js

@ -9,7 +9,7 @@ var ECPointFp = bitcoinjs.ECPointFp
var convert = require('../src/convert')
it('Keys & Key Management', function () {
var p1 = bitcoinjs.Key().getPub().toBytes()
var p1 = bitcoinjs.ECKey().getPub().toBytes()
assert.equal(p1.length, 65)
var p1_q = ECPointFp.decodeFrom(ecparams.getCurve(), p1)
@ -26,7 +26,7 @@ it('Keys & Key Management', function () {
})
it('Signing and Verifying', function () {
var s1 = bitcoinjs.Key()
var s1 = bitcoinjs.ECKey()
var sig_a = s1.sign(BigInteger.ZERO)
assert.ok(sig_a, 'Sign null')

Loading…
Cancel
Save