2014-03-31 05:47:47 +02:00
|
|
|
var assert = require('assert')
|
2014-05-13 09:55:53 +02:00
|
|
|
var crypto = require('../src/crypto')
|
2014-06-03 13:43:10 +02:00
|
|
|
var networks = require('../src/networks')
|
2014-05-13 08:35:07 +02:00
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
var BigInteger = require('bigi')
|
2014-05-13 09:55:53 +02:00
|
|
|
var ECKey = require('../src/eckey')
|
2014-05-16 05:46:06 +02:00
|
|
|
|
2014-05-18 11:47:39 +02:00
|
|
|
var fixtures = require('./fixtures/eckey.json')
|
2014-01-11 07:57:43 +01:00
|
|
|
|
|
|
|
describe('ECKey', function() {
|
2014-03-31 05:47:47 +02:00
|
|
|
describe('constructor', function() {
|
2014-05-16 05:46:06 +02:00
|
|
|
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
|
|
|
})
|
2014-02-24 17:31:18 +01:00
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
it('supports the uncompressed flag', function() {
|
|
|
|
var privKey = new ECKey(BigInteger.ONE, false)
|
2014-03-31 05:47:47 +02:00
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
assert.equal(privKey.pub.compressed, false)
|
2014-03-24 17:48:50 +01:00
|
|
|
})
|
2014-03-24 23:11:34 +01:00
|
|
|
|
2014-05-29 08:00:27 +02:00
|
|
|
fixtures.valid.forEach(function(f) {
|
2014-06-07 10:24:16 +02:00
|
|
|
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-05-16 05:46:06 +02:00
|
|
|
assert.equal(privKey.pub.Q.toString(), f.Q.toString())
|
|
|
|
})
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
2014-03-24 17:31:55 +01:00
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
fixtures.invalid.constructor.forEach(function(f) {
|
2014-06-07 10:24:16 +02:00
|
|
|
it('throws on ' + f.d, function() {
|
|
|
|
var d = new BigInteger(f.d)
|
2014-05-31 03:28:00 +02:00
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
assert.throws(function() {
|
2014-06-07 10:24:16 +02:00
|
|
|
new ECKey(d)
|
2014-05-29 08:00:27 +02:00
|
|
|
}, new RegExp(f.exception))
|
2014-05-16 05:46:06 +02:00
|
|
|
})
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
describe('fromWIF', function() {
|
2014-05-29 08:00:27 +02:00
|
|
|
fixtures.valid.forEach(function(f) {
|
|
|
|
f.WIFs.forEach(function(wif) {
|
|
|
|
it('imports ' + wif.string + ' correctly', function() {
|
2014-05-16 05:46:06 +02:00
|
|
|
var privKey = ECKey.fromWIF(wif.string)
|
2014-03-31 05:47:47 +02:00
|
|
|
|
2014-06-07 10:24:16 +02:00
|
|
|
assert.equal(privKey.d.toString(), f.d)
|
2014-05-16 05:46:06 +02:00
|
|
|
assert.equal(privKey.pub.compressed, wif.compressed)
|
|
|
|
})
|
|
|
|
})
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
fixtures.invalid.WIF.forEach(function(f) {
|
2014-05-29 08:00:27 +02:00
|
|
|
it('throws on ' + f.string, function() {
|
2014-05-16 05:46:06 +02:00
|
|
|
assert.throws(function() {
|
|
|
|
ECKey.fromWIF(f.string)
|
2014-05-29 08:00:27 +02:00
|
|
|
}, new RegExp(f.exception))
|
2014-05-16 05:46:06 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2014-03-31 05:47:47 +02:00
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
describe('toWIF', function() {
|
2014-05-29 08:00:27 +02:00
|
|
|
fixtures.valid.forEach(function(f) {
|
|
|
|
f.WIFs.forEach(function(wif) {
|
|
|
|
it('exports ' + wif.string + ' correctly', function() {
|
2014-05-16 05:46:06 +02:00
|
|
|
var privKey = ECKey.fromWIF(wif.string)
|
2014-06-03 13:43:10 +02:00
|
|
|
var network = networks[wif.network]
|
|
|
|
var result = privKey.toWIF(network)
|
2014-05-16 05:46:06 +02:00
|
|
|
|
|
|
|
assert.equal(result, wif.string)
|
|
|
|
})
|
|
|
|
})
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
2014-05-16 05:46:06 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('signing', function() {
|
|
|
|
var hash = crypto.sha256('Vires in numeris')
|
|
|
|
var priv = ECKey.makeRandom()
|
|
|
|
var signature = priv.sign(hash)
|
2014-03-31 05:47:47 +02:00
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
it('should verify against the public key', function() {
|
|
|
|
assert(priv.pub.verify(hash, signature))
|
|
|
|
})
|
2014-03-31 05:47:47 +02:00
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
it('should not verify against the wrong public key', function() {
|
|
|
|
var priv2 = ECKey.makeRandom()
|
2014-03-31 05:47:47 +02:00
|
|
|
|
2014-04-23 23:45:28 +02:00
|
|
|
assert(!priv2.pub.verify(hash, signature))
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
|
|
|
})
|
2014-01-11 07:57:43 +01:00
|
|
|
})
|