bitcoinjs-lib/test/ecdsa.js

130 lines
4.1 KiB
JavaScript
Raw Normal View History

2015-02-23 00:36:57 +01:00
/* global describe, it */
2014-03-28 18:24:23 +01:00
var assert = require('assert')
var bcrypto = require('../src/crypto')
var ecdsa = require('../src/ecdsa')
2018-03-20 04:49:10 +01:00
var hoodwink = require('hoodwink')
2014-05-13 08:35:07 +02:00
2014-05-03 04:04:54 +02:00
var BigInteger = require('bigi')
var ECSignature = require('../src/ecsignature')
2014-03-28 18:24:23 +01:00
2015-08-25 12:43:32 +02:00
var curve = ecdsa.__curve
2014-06-07 08:24:27 +02:00
2014-05-18 11:47:39 +02:00
var fixtures = require('./fixtures/ecdsa.json')
2015-02-23 00:36:57 +01:00
describe('ecdsa', function () {
describe('deterministicGenerateK', function () {
function checkSig () {
return true
}
2015-02-23 00:36:57 +01:00
fixtures.valid.ecdsa.forEach(function (f) {
it('for "' + f.message + '"', function () {
2015-08-25 12:43:32 +02:00
var x = BigInteger.fromHex(f.d).toBuffer(32)
var h1 = bcrypto.sha256(f.message)
2015-08-25 12:43:32 +02:00
var k = ecdsa.deterministicGenerateK(h1, x, checkSig)
2015-05-07 03:29:20 +02:00
assert.strictEqual(k.toHex(), f.k)
})
})
2014-06-25 18:42:51 +02:00
2018-03-20 04:49:10 +01:00
it('loops until an appropriate k value is found', hoodwink(function () {
2018-03-20 03:19:39 +01:00
this.mock(BigInteger, 'fromBuffer', function f (b) {
assert.strictEqual(b.length, 32)
if (f.calls === 0) return BigInteger.ZERO // < 1
if (f.calls === 1) return curve.n // > n - 1
if (f.calls === 2) return new BigInteger('42') // valid
}, 3)
2014-06-25 18:42:51 +02:00
2015-08-25 12:43:32 +02:00
var x = new BigInteger('1').toBuffer(32)
2017-04-19 09:39:16 +02:00
var h1 = Buffer.alloc(32)
2015-08-25 12:43:32 +02:00
var k = ecdsa.deterministicGenerateK(h1, x, checkSig)
2014-06-25 18:42:51 +02:00
2015-05-07 03:29:20 +02:00
assert.strictEqual(k.toString(), '42')
2014-06-25 18:42:51 +02:00
}))
2018-03-20 04:49:10 +01:00
it('loops until a suitable signature is found', hoodwink(function () {
2018-03-20 03:19:39 +01:00
var checkSigStub = this.stub(function f () {
if (f.calls === 0) return false // bad signature
if (f.calls === 1) return true // good signature
}, 2)
2018-03-20 03:19:39 +01:00
var x = BigInteger.ONE.toBuffer(32)
2017-04-19 09:39:16 +02:00
var h1 = Buffer.alloc(32)
2018-03-20 03:19:39 +01:00
var k = ecdsa.deterministicGenerateK(h1, x, checkSigStub)
2018-03-20 03:19:39 +01:00
assert.strictEqual(k.toHex(), 'a9b1a1a84a4c2f96b6158ed7a81404c50cb74373c22e8d9e02d0411d719acae2')
}))
2015-02-23 00:36:57 +01:00
fixtures.valid.rfc6979.forEach(function (f) {
it('produces the expected k values for ' + f.message + " if k wasn't suitable", function () {
2015-08-25 12:43:32 +02:00
var x = BigInteger.fromHex(f.d).toBuffer(32)
var h1 = bcrypto.sha256(f.message)
2015-01-05 02:42:09 +01:00
var results = []
2015-08-25 12:43:32 +02:00
ecdsa.deterministicGenerateK(h1, x, function (k) {
2015-01-05 02:42:09 +01:00
results.push(k)
2015-01-05 02:42:09 +01:00
return results.length === 16
})
2015-01-05 02:42:09 +01:00
2015-05-07 03:29:20 +02:00
assert.strictEqual(results[0].toHex(), f.k0)
assert.strictEqual(results[1].toHex(), f.k1)
assert.strictEqual(results[15].toHex(), f.k15)
2015-01-05 02:42:09 +01:00
})
})
})
2015-02-23 00:36:57 +01:00
describe('sign', function () {
fixtures.valid.ecdsa.forEach(function (f) {
it('produces a deterministic signature for "' + f.message + '"', function () {
var d = BigInteger.fromHex(f.d)
var hash = bcrypto.sha256(f.message)
2015-08-25 12:43:32 +02:00
var signature = ecdsa.sign(hash, d).toDER()
assert.strictEqual(signature.toString('hex'), f.signature)
})
})
2015-02-23 00:36:57 +01:00
it('should sign with low S value', function () {
var hash = bcrypto.sha256('Vires in numeris')
2015-08-25 12:43:32 +02:00
var sig = ecdsa.sign(hash, BigInteger.ONE)
// See BIP62 for more information
2014-06-15 17:36:05 +02:00
var N_OVER_TWO = curve.n.shiftRight(1)
2014-05-10 14:38:05 +02:00
assert(sig.s.compareTo(N_OVER_TWO) <= 0)
})
})
2015-04-10 09:22:00 +02:00
describe('verify', function () {
2015-02-23 00:36:57 +01:00
fixtures.valid.ecdsa.forEach(function (f) {
it('verifies a valid signature for "' + f.message + '"', function () {
var d = BigInteger.fromHex(f.d)
var H = bcrypto.sha256(f.message)
2017-04-19 09:39:16 +02:00
var signature = ECSignature.fromDER(Buffer.from(f.signature, 'hex'))
2014-06-15 17:36:05 +02:00
var Q = curve.G.multiply(d)
2015-08-25 12:43:32 +02:00
assert(ecdsa.verify(H, signature, Q))
})
})
2014-05-24 05:40:20 +02:00
2015-04-10 09:22:00 +02:00
fixtures.invalid.verify.forEach(function (f) {
2015-02-23 00:36:57 +01:00
it('fails to verify with ' + f.description, function () {
var H = bcrypto.sha256(f.message)
var d = BigInteger.fromHex(f.d)
var signature
if (f.signature) {
2017-04-19 09:39:16 +02:00
signature = ECSignature.fromDER(Buffer.from(f.signature, 'hex'))
} else if (f.signatureRaw) {
signature = new ECSignature(new BigInteger(f.signatureRaw.r, 16), new BigInteger(f.signatureRaw.s, 16))
}
2014-06-15 17:36:05 +02:00
var Q = curve.G.multiply(d)
2014-05-24 05:40:20 +02:00
2015-08-25 12:43:32 +02:00
assert.strictEqual(ecdsa.verify(H, signature, Q), false)
2014-05-24 05:40:20 +02:00
})
})
})
2014-03-28 18:24:23 +01:00
})