2016-08-13 03:42:53 +02:00
|
|
|
/* global describe, it */
|
|
|
|
|
2018-05-22 09:43:25 +02:00
|
|
|
let assert = require('assert')
|
|
|
|
let bitcoin = require('../../')
|
2018-05-22 08:33:43 +02:00
|
|
|
let ecc = require('tiny-secp256k1')
|
2018-05-22 09:43:25 +02:00
|
|
|
|
|
|
|
// TODO: remove
|
|
|
|
let baddress = bitcoin.address
|
|
|
|
let bcrypto = bitcoin.crypto
|
|
|
|
function getAddress (node) {
|
2018-05-30 03:19:46 +02:00
|
|
|
return baddress.toBase58Check(bcrypto.hash160(node.publicKey), bitcoin.networks.bitcoin.pubKeyHash)
|
2018-05-22 09:43:25 +02:00
|
|
|
}
|
2016-08-17 05:06:31 +02:00
|
|
|
|
2016-12-10 05:01:41 +01:00
|
|
|
// vG = (dG \+ sha256(e * dG)G)
|
2016-08-17 05:06:31 +02:00
|
|
|
function stealthSend (e, Q) {
|
2018-05-22 08:33:43 +02:00
|
|
|
var eQ = ecc.pointMultiply(Q, e, true) // shared secret
|
|
|
|
var c = bitcoin.crypto.sha256(eQ)
|
|
|
|
var Qc = ecc.pointAddScalar(Q, c)
|
|
|
|
var vG = bitcoin.ECPair.fromPublicKey(Qc)
|
2016-08-17 05:06:31 +02:00
|
|
|
|
2016-10-05 02:05:28 +02:00
|
|
|
return vG
|
2016-08-17 05:06:31 +02:00
|
|
|
}
|
|
|
|
|
2016-12-10 02:34:06 +01:00
|
|
|
// v = (d + sha256(eG * d))
|
2016-08-17 05:06:31 +02:00
|
|
|
function stealthReceive (d, eG) {
|
2018-05-22 08:33:43 +02:00
|
|
|
var eQ = ecc.pointMultiply(eG, d) // shared secret
|
|
|
|
var c = bitcoin.crypto.sha256(eQ)
|
|
|
|
var dc = ecc.privateAdd(d, c)
|
|
|
|
var v = bitcoin.ECPair.fromPrivateKey(dc)
|
2016-08-17 05:06:31 +02:00
|
|
|
|
2016-10-05 02:05:28 +02:00
|
|
|
return v
|
2016-08-17 05:06:31 +02:00
|
|
|
}
|
2016-08-13 03:42:53 +02:00
|
|
|
|
2016-12-10 02:34:06 +01:00
|
|
|
// d = (v - sha256(e * dG))
|
|
|
|
function stealthRecoverLeaked (v, e, Q) {
|
2018-05-22 08:33:43 +02:00
|
|
|
var eQ = ecc.pointMultiply(Q, e) // shared secret
|
|
|
|
var c = bitcoin.crypto.sha256(eQ)
|
|
|
|
var vc = ecc.privateSub(v, c)
|
|
|
|
var d = bitcoin.ECPair.fromPrivateKey(vc)
|
2016-11-25 03:42:17 +01:00
|
|
|
|
2016-12-10 02:34:06 +01:00
|
|
|
return d
|
2016-11-25 03:42:17 +01:00
|
|
|
}
|
|
|
|
|
2016-12-10 05:01:41 +01:00
|
|
|
// vG = (rG \+ sha256(e * dG)G)
|
2016-12-10 03:52:08 +01:00
|
|
|
function stealthDualSend (e, R, Q) {
|
2018-05-22 08:33:43 +02:00
|
|
|
var eQ = ecc.pointMultiply(Q, e) // shared secret
|
|
|
|
var c = bitcoin.crypto.sha256(eQ)
|
|
|
|
var Rc = ecc.pointAddScalar(R, c)
|
|
|
|
var vG = bitcoin.ECPair.fromPublicKey(Rc)
|
2016-12-10 03:52:08 +01:00
|
|
|
|
|
|
|
return vG
|
|
|
|
}
|
|
|
|
|
2016-12-10 05:01:41 +01:00
|
|
|
// vG = (rG \+ sha256(eG * d)G)
|
2016-12-10 03:52:08 +01:00
|
|
|
function stealthDualScan (d, R, eG) {
|
2018-05-22 08:33:43 +02:00
|
|
|
var eQ = ecc.pointMultiply(eG, d) // shared secret
|
|
|
|
var c = bitcoin.crypto.sha256(eQ)
|
|
|
|
var Rc = ecc.pointAddScalar(R, c)
|
|
|
|
var vG = bitcoin.ECPair.fromPublicKey(Rc)
|
2016-12-10 03:52:08 +01:00
|
|
|
|
|
|
|
return vG
|
|
|
|
}
|
|
|
|
|
2016-12-10 04:33:51 +01:00
|
|
|
// v = (r + sha256(eG * d))
|
2016-12-10 03:52:08 +01:00
|
|
|
function stealthDualReceive (d, r, eG) {
|
2018-05-22 08:33:43 +02:00
|
|
|
var eQ = ecc.pointMultiply(eG, d) // shared secret
|
|
|
|
var c = bitcoin.crypto.sha256(eQ)
|
|
|
|
var rc = ecc.privateAdd(r, c)
|
|
|
|
var v = bitcoin.ECPair.fromPrivateKey(rc)
|
2016-12-10 03:52:08 +01:00
|
|
|
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2016-08-13 03:42:53 +02:00
|
|
|
describe('bitcoinjs-lib (crypto)', function () {
|
|
|
|
it('can generate a single-key stealth address', function () {
|
2016-08-17 05:06:31 +02:00
|
|
|
// XXX: should be randomly generated, see next test for example
|
|
|
|
var recipient = bitcoin.ECPair.fromWIF('5KYZdUEo39z3FPrtuX2QbbwGnNP5zTd7yyr2SC1j299sBCnWjss') // private to recipient
|
|
|
|
var nonce = bitcoin.ECPair.fromWIF('KxVqB96pxbw1pokzQrZkQbLfVBjjHFfp2mFfEp8wuEyGenLFJhM9') // private to sender
|
|
|
|
|
|
|
|
// ... recipient reveals public key (recipient.Q) to sender
|
2018-05-30 03:19:46 +02:00
|
|
|
var forSender = stealthSend(nonce.privateKey, recipient.publicKey)
|
2018-05-22 09:43:25 +02:00
|
|
|
assert.equal(getAddress(forSender), '1CcZWwCpACJL3AxqoDbwEt4JgDFuTHUspE')
|
2016-08-17 05:06:31 +02:00
|
|
|
assert.throws(function () { forSender.toWIF() }, /Error: Missing private key/)
|
|
|
|
|
|
|
|
// ... sender reveals nonce public key (nonce.Q) to recipient
|
2018-05-30 03:19:46 +02:00
|
|
|
var forRecipient = stealthReceive(recipient.privateKey, nonce.publicKey)
|
2018-05-22 09:43:25 +02:00
|
|
|
assert.equal(getAddress(forRecipient), '1CcZWwCpACJL3AxqoDbwEt4JgDFuTHUspE')
|
2016-08-17 05:06:31 +02:00
|
|
|
assert.equal(forRecipient.toWIF(), 'L1yjUN3oYyCXV3LcsBrmxCNTa62bZKWCybxVJMvqjMmmfDE8yk7n')
|
|
|
|
|
|
|
|
// sender and recipient, both derived same address
|
2018-05-22 09:43:25 +02:00
|
|
|
assert.equal(getAddress(forSender), getAddress(forRecipient))
|
2016-08-17 05:06:31 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it('can generate a single-key stealth address (randomly)', function () {
|
|
|
|
var recipient = bitcoin.ECPair.makeRandom() // private to recipient
|
|
|
|
var nonce = bitcoin.ECPair.makeRandom() // private to sender
|
|
|
|
|
|
|
|
// ... recipient reveals public key (recipient.Q) to sender
|
2018-05-30 03:19:46 +02:00
|
|
|
var forSender = stealthSend(nonce.privateKey, recipient.publicKey)
|
2016-08-17 05:06:31 +02:00
|
|
|
assert.throws(function () { forSender.toWIF() }, /Error: Missing private key/)
|
|
|
|
|
|
|
|
// ... sender reveals nonce public key (nonce.Q) to recipient
|
2018-05-30 03:19:46 +02:00
|
|
|
var forRecipient = stealthReceive(recipient.privateKey, nonce.publicKey)
|
2016-08-17 05:06:31 +02:00
|
|
|
assert.doesNotThrow(function () { forRecipient.toWIF() })
|
|
|
|
|
|
|
|
// sender and recipient, both derived same address
|
2018-05-22 09:43:25 +02:00
|
|
|
assert.equal(getAddress(forSender), getAddress(forRecipient))
|
2016-08-13 03:42:53 +02:00
|
|
|
})
|
|
|
|
|
2016-11-25 03:42:17 +01:00
|
|
|
it('can recover parent recipient.d, if a derived private key is leaked [and nonce was revealed]', function () {
|
|
|
|
var recipient = bitcoin.ECPair.makeRandom() // private to recipient
|
|
|
|
var nonce = bitcoin.ECPair.makeRandom() // private to sender
|
|
|
|
|
|
|
|
// ... recipient reveals public key (recipient.Q) to sender
|
2018-05-30 03:19:46 +02:00
|
|
|
var forSender = stealthSend(nonce.privateKey, recipient.publicKey)
|
2016-11-25 03:42:17 +01:00
|
|
|
assert.throws(function () { forSender.toWIF() }, /Error: Missing private key/)
|
|
|
|
|
|
|
|
// ... sender reveals nonce public key (nonce.Q) to recipient
|
2018-05-30 03:19:46 +02:00
|
|
|
var forRecipient = stealthReceive(recipient.privateKey, nonce.publicKey)
|
2016-11-25 03:42:17 +01:00
|
|
|
assert.doesNotThrow(function () { forRecipient.toWIF() })
|
|
|
|
|
|
|
|
// ... recipient accidentally leaks forRecipient.d on the blockchain
|
2018-05-30 03:19:46 +02:00
|
|
|
var leaked = stealthRecoverLeaked(forRecipient.privateKey, nonce.privateKey, recipient.publicKey)
|
2016-11-25 03:42:17 +01:00
|
|
|
assert.equal(leaked.toWIF(), recipient.toWIF())
|
|
|
|
})
|
|
|
|
|
2016-12-10 04:37:14 +01:00
|
|
|
it('can generate a dual-key stealth address', function () {
|
2016-12-10 03:52:08 +01:00
|
|
|
// XXX: should be randomly generated, see next test for example
|
|
|
|
var recipient = bitcoin.ECPair.fromWIF('5KYZdUEo39z3FPrtuX2QbbwGnNP5zTd7yyr2SC1j299sBCnWjss') // private to recipient
|
|
|
|
var scan = bitcoin.ECPair.fromWIF('L5DkCk3xLLoGKncqKsWQTdaPSR4V8gzc14WVghysQGkdryRudjBM') // private to scanner/recipient
|
|
|
|
var nonce = bitcoin.ECPair.fromWIF('KxVqB96pxbw1pokzQrZkQbLfVBjjHFfp2mFfEp8wuEyGenLFJhM9') // private to sender
|
|
|
|
|
|
|
|
// ... recipient reveals public key(s) (recipient.Q, scan.Q) to sender
|
2018-05-30 03:19:46 +02:00
|
|
|
var forSender = stealthDualSend(nonce.privateKey, recipient.publicKey, scan.publicKey)
|
2016-12-10 03:52:08 +01:00
|
|
|
assert.throws(function () { forSender.toWIF() }, /Error: Missing private key/)
|
|
|
|
|
|
|
|
// ... sender reveals nonce public key (nonce.Q) to scanner
|
2018-05-30 03:19:46 +02:00
|
|
|
var forScanner = stealthDualScan(scan.privateKey, recipient.publicKey, nonce.publicKey)
|
2016-12-10 03:52:08 +01:00
|
|
|
assert.throws(function () { forScanner.toWIF() }, /Error: Missing private key/)
|
|
|
|
|
|
|
|
// ... scanner reveals relevant transaction + nonce public key (nonce.Q) to recipient
|
2018-05-30 03:19:46 +02:00
|
|
|
var forRecipient = stealthDualReceive(scan.privateKey, recipient.privateKey, nonce.publicKey)
|
2016-12-10 03:52:08 +01:00
|
|
|
assert.doesNotThrow(function () { forRecipient.toWIF() })
|
|
|
|
|
|
|
|
// scanner, sender and recipient, all derived same address
|
2018-05-22 09:43:25 +02:00
|
|
|
assert.equal(getAddress(forSender), getAddress(forScanner))
|
|
|
|
assert.equal(getAddress(forSender), getAddress(forRecipient))
|
2016-12-10 03:52:08 +01:00
|
|
|
})
|
2016-12-10 04:37:14 +01:00
|
|
|
|
|
|
|
it('can generate a dual-key stealth address (randomly)', function () {
|
|
|
|
var recipient = bitcoin.ECPair.makeRandom() // private to recipient
|
|
|
|
var scan = bitcoin.ECPair.makeRandom() // private to scanner/recipient
|
|
|
|
var nonce = bitcoin.ECPair.makeRandom() // private to sender
|
|
|
|
|
|
|
|
// ... recipient reveals public key(s) (recipient.Q, scan.Q) to sender
|
2018-05-30 03:19:46 +02:00
|
|
|
var forSender = stealthDualSend(nonce.privateKey, recipient.publicKey, scan.publicKey)
|
2016-12-10 04:37:14 +01:00
|
|
|
assert.throws(function () { forSender.toWIF() }, /Error: Missing private key/)
|
|
|
|
|
|
|
|
// ... sender reveals nonce public key (nonce.Q) to scanner
|
2018-05-30 03:19:46 +02:00
|
|
|
var forScanner = stealthDualScan(scan.privateKey, recipient.publicKey, nonce.publicKey)
|
2016-12-10 04:37:14 +01:00
|
|
|
assert.throws(function () { forScanner.toWIF() }, /Error: Missing private key/)
|
|
|
|
|
|
|
|
// ... scanner reveals relevant transaction + nonce public key (nonce.Q) to recipient
|
2018-05-30 03:19:46 +02:00
|
|
|
var forRecipient = stealthDualReceive(scan.privateKey, recipient.privateKey, nonce.publicKey)
|
2016-12-10 04:37:14 +01:00
|
|
|
assert.doesNotThrow(function () { forRecipient.toWIF() })
|
|
|
|
|
|
|
|
// scanner, sender and recipient, all derived same address
|
2018-05-22 09:43:25 +02:00
|
|
|
assert.equal(getAddress(forSender), getAddress(forScanner))
|
|
|
|
assert.equal(getAddress(forSender), getAddress(forRecipient))
|
2016-12-10 04:37:14 +01:00
|
|
|
})
|
2016-08-13 03:42:53 +02:00
|
|
|
})
|