bitcoinjs-lib/test/eckey.js

144 lines
3.9 KiB
JavaScript
Raw Normal View History

2015-03-19 01:08:56 +01:00
/* global describe, it */
2015-02-23 00:36:57 +01:00
/* eslint-disable no-new */
2014-03-31 05:47:47 +02:00
var assert = require('assert')
var ecurve = require('ecurve')
var networks = require('../src/networks')
2015-03-19 01:08:56 +01:00
var proxyquire = require('proxyquire')
2015-03-18 16:30:04 +01:00
var randomBytes = require('randombytes')
2014-06-23 10:22:01 +02:00
var BigInteger = require('bigi')
var ECKey = require('../src/eckey')
2014-05-18 11:47:39 +02:00
var fixtures = require('./fixtures/eckey.json')
2015-02-23 00:36:57 +01:00
describe('ECKey', function () {
describe('constructor', function () {
it('defaults to compressed', function () {
var privKey = new ECKey(BigInteger.ONE)
assert.equal(privKey.pub.compressed, true)
2014-03-22 08:19:56 +01:00
})
2015-02-23 00:36:57 +01:00
it('supports the uncompressed flag', function () {
var privKey = new ECKey(BigInteger.ONE, false)
2014-03-31 05:47:47 +02:00
assert.equal(privKey.pub.compressed, false)
2014-03-24 17:48:50 +01:00
})
2014-03-24 23:11:34 +01:00
2015-02-23 00:36:57 +01:00
fixtures.valid.forEach(function (f) {
it('calculates the matching pubKey for ' + f.d, function () {
var d = new BigInteger(f.d)
var privKey = new ECKey(d)
2014-03-31 05:47:47 +02:00
2014-06-21 09:05:12 +02:00
assert.equal(privKey.pub.Q.toString(), f.Q)
})
2014-03-31 05:47:47 +02:00
})
2015-02-23 00:36:57 +01:00
fixtures.invalid.constructor.forEach(function (f) {
it('throws on ' + f.d, function () {
var d = new BigInteger(f.d)
2014-05-31 03:28:00 +02:00
2015-02-23 00:36:57 +01:00
assert.throws(function () {
new ECKey(d)
}, new RegExp(f.exception))
})
2014-03-31 05:47:47 +02:00
})
})
2015-02-23 00:36:57 +01:00
it('uses the secp256k1 curve by default', function () {
var secp256k1 = ecurve.getCurveByName('secp256k1')
for (var property in secp256k1) {
// FIXME: circular structures in ecurve
if (property === 'G') continue
if (property === 'infinity') continue
var actual = ECKey.curve[property]
var expected = secp256k1[property]
assert.deepEqual(actual, expected)
}
})
2015-02-23 00:36:57 +01:00
describe('fromWIF', function () {
fixtures.valid.forEach(function (f) {
f.WIFs.forEach(function (wif) {
it('imports ' + wif.string + ' correctly', function () {
var privKey = ECKey.fromWIF(wif.string)
2014-03-31 05:47:47 +02:00
assert.equal(privKey.d.toString(), f.d)
assert.equal(privKey.pub.compressed, wif.compressed)
})
})
2014-03-31 05:47:47 +02:00
})
2015-02-23 00:36:57 +01:00
fixtures.invalid.WIF.forEach(function (f) {
it('throws on ' + f.string, function () {
assert.throws(function () {
ECKey.fromWIF(f.string)
}, new RegExp(f.exception))
})
})
})
2014-03-31 05:47:47 +02:00
2015-02-23 00:36:57 +01:00
describe('toWIF', function () {
fixtures.valid.forEach(function (f) {
f.WIFs.forEach(function (wif) {
it('exports ' + wif.string + ' correctly', function () {
var privKey = ECKey.fromWIF(wif.string)
var network = networks[wif.network]
var result = privKey.toWIF(network)
assert.equal(result, wif.string)
})
})
2014-03-31 05:47:47 +02:00
})
})
2015-02-23 00:36:57 +01:00
describe('makeRandom', function () {
2014-06-23 10:22:01 +02:00
var exWIF = 'KwMWvwRJeFqxYyhZgNwYuYjbQENDAPAudQx5VEmKJrUZcq6aL2pv'
var exPrivKey = ECKey.fromWIF(exWIF)
var exBuffer = exPrivKey.d.toBuffer(32)
2015-03-18 16:30:04 +01:00
it("uses the RNG provided by the 'randombytes' module by default", function () {
2015-03-19 01:08:56 +01:00
var stub = { randombytes: function () { return exBuffer } }
2015-03-18 16:30:04 +01:00
var ProxiedECKey = proxyquire('../src/eckey', stub)
2014-06-23 10:22:01 +02:00
2015-03-18 16:30:04 +01:00
var privKey = ProxiedECKey.makeRandom()
2014-06-23 10:22:01 +02:00
2015-03-18 16:30:04 +01:00
assert.equal(privKey.toWIF(), exWIF)
2014-06-23 10:22:01 +02:00
})
2015-02-23 00:36:57 +01:00
it('allows a custom RNG to be used', function () {
function rng (size) {
2014-06-23 10:22:01 +02:00
return exBuffer.slice(0, size)
}
var privKey = ECKey.makeRandom(undefined, rng)
assert.equal(privKey.toWIF(), exWIF)
})
2015-03-18 16:30:04 +01:00
it('supports compression', function () {
assert.equal(ECKey.makeRandom(true).pub.compressed, true)
assert.equal(ECKey.makeRandom(false).pub.compressed, false)
})
2014-06-23 10:22:01 +02:00
})
2015-02-23 00:36:57 +01:00
describe('signing', function () {
2015-03-18 16:30:04 +01:00
var hash = randomBytes(32)
var priv = ECKey.makeRandom()
var signature = priv.sign(hash)
2014-03-31 05:47:47 +02:00
2015-02-23 00:36:57 +01:00
it('should verify against the public key', function () {
assert(priv.pub.verify(hash, signature))
})
2014-03-31 05:47:47 +02:00
2015-02-23 00:36:57 +01:00
it('should not verify against the wrong public key', function () {
var priv2 = ECKey.makeRandom()
2014-03-31 05:47:47 +02:00
assert(!priv2.pub.verify(hash, signature))
2014-03-31 05:47:47 +02:00
})
})
})