216 lines
6.4 KiB
JavaScript
216 lines
6.4 KiB
JavaScript
// Parts of this software are based on "bech32".
|
|
// https://github.com/sipa/bech32
|
|
//
|
|
// Copyright (c) 2017 Pieter Wuille
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
/* eslint-env mocha */
|
|
/* eslint prefer-arrow-callback: "off" */
|
|
|
|
'use strict';
|
|
|
|
const assert = require('./util/assert');
|
|
const bech32 = require('../lib/utils/bech32');
|
|
const Address = require('../lib/primitives/address');
|
|
|
|
const validChecksums = [
|
|
'A12UEL5L',
|
|
'an83characterlonghumanreadablepartthatcontains'
|
|
+ 'thenumber1andtheexcludedcharactersbio1tt5tgs',
|
|
'abcdef1qpzry9x8gf2tvdw0s3jn54khce6mua7lmqqqxw',
|
|
'11qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq'
|
|
+ 'qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqc8247j',
|
|
'split1checkupstagehandshakeupstreamerranterredcaperred2y9e3w'
|
|
];
|
|
|
|
const validAddresses = [
|
|
[
|
|
'LTC1QW508D6QEJXTDG4Y5R3ZARVARY0C5XW7KGMN4N9',
|
|
Buffer.from([
|
|
0x00, 0x14, 0x75, 0x1e, 0x76, 0xe8, 0x19, 0x91, 0x96, 0xd4, 0x54,
|
|
0x94, 0x1c, 0x45, 0xd1, 0xb3, 0xa3, 0x23, 0xf1, 0x43, 0x3b, 0xd6
|
|
])
|
|
],
|
|
[
|
|
'tltc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qsnr4fp',
|
|
Buffer.from([
|
|
0x00, 0x20, 0x18, 0x63, 0x14, 0x3c, 0x14, 0xc5, 0x16, 0x68, 0x04,
|
|
0xbd, 0x19, 0x20, 0x33, 0x56, 0xda, 0x13, 0x6c, 0x98, 0x56, 0x78,
|
|
0xcd, 0x4d, 0x27, 0xa1, 0xb8, 0xc6, 0x32, 0x96, 0x04, 0x90, 0x32,
|
|
0x62
|
|
])
|
|
],
|
|
[
|
|
'ltc1pw508d6qejxtdg4y5r3zarvary0c5xw7kw508d6qejxtdg4y5r3zarvary0c5xw7k0tul4w',
|
|
Buffer.from([
|
|
0x81, 0x28, 0x75, 0x1e, 0x76, 0xe8, 0x19, 0x91, 0x96, 0xd4, 0x54,
|
|
0x94, 0x1c, 0x45, 0xd1, 0xb3, 0xa3, 0x23, 0xf1, 0x43, 0x3b, 0xd6,
|
|
0x75, 0x1e, 0x76, 0xe8, 0x19, 0x91, 0x96, 0xd4, 0x54, 0x94, 0x1c,
|
|
0x45, 0xd1, 0xb3, 0xa3, 0x23, 0xf1, 0x43, 0x3b, 0xd6
|
|
])
|
|
],
|
|
[
|
|
'LTC1SW50QZGYDF5',
|
|
Buffer.from([
|
|
0x90, 0x02, 0x75, 0x1e
|
|
])
|
|
],
|
|
[
|
|
'ltc1zw508d6qejxtdg4y5r3zarvaryvdzur3w',
|
|
Buffer.from([
|
|
0x82, 0x10, 0x75, 0x1e, 0x76, 0xe8, 0x19, 0x91, 0x96, 0xd4, 0x54,
|
|
0x94, 0x1c, 0x45, 0xd1, 0xb3, 0xa3, 0x23
|
|
])
|
|
],
|
|
[
|
|
'tltc1qqqqqp399et2xygdj5xreqhjjvcmzhxw4aywxecjdzew6hylgvsesu9tmgm',
|
|
Buffer.from([
|
|
0x00, 0x20, 0x00, 0x00, 0x00, 0xc4, 0xa5, 0xca, 0xd4, 0x62, 0x21,
|
|
0xb2, 0xa1, 0x87, 0x90, 0x5e, 0x52, 0x66, 0x36, 0x2b, 0x99, 0xd5,
|
|
0xe9, 0x1c, 0x6c, 0xe2, 0x4d, 0x16, 0x5d, 0xab, 0x93, 0xe8, 0x64,
|
|
0x33
|
|
])
|
|
]
|
|
];
|
|
|
|
const invalidAddresses = [
|
|
'tc1qw508d6qejxtdg4y5r3zarvary0c5xw7kg3g4ty',
|
|
'bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t5',
|
|
'BC13W508D6QEJXTDG4Y5R3ZARVARY0C5XW7KN40WF2',
|
|
'bc1rw5uspcuh',
|
|
'bc10w508d6qejxtdg4y5r3zarvary0c5xw7kw508d'
|
|
+ '6qejxtdg4y5r3zarvary0c5xw7kw5rljs90',
|
|
'BC1QR508D6QEJXTDG4Y5R3ZARVARYV98GJ9P',
|
|
'tb1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3q0sL5k7',
|
|
'tb1pw508d6qejxtdg4y5r3zarqfsj6c3',
|
|
'tb1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3pjxtptv'
|
|
];
|
|
|
|
function fromAddress(hrp, addr) {
|
|
const dec = bech32.decode(addr);
|
|
|
|
if (dec.hrp !== hrp)
|
|
throw new Error('Invalid bech32 prefix or data length.');
|
|
|
|
if (dec.version === 0 && dec.hash.length !== 20 && dec.hash.length !== 32)
|
|
throw new Error('Malformed witness program.');
|
|
|
|
return {
|
|
version: dec.version,
|
|
program: dec.hash
|
|
};
|
|
}
|
|
|
|
function toAddress(hrp, version, program) {
|
|
const ret = bech32.encode(hrp, version, program);
|
|
|
|
fromAddress(hrp, ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
function createProgram(version, program) {
|
|
const data = Buffer.allocUnsafe(2 + program.length);
|
|
data[0] = version ? version + 0x80 : 0;
|
|
data[1] = program.length;
|
|
program.copy(data, 2);
|
|
return data;
|
|
}
|
|
|
|
describe('Bech32', function() {
|
|
for (const addr of validChecksums) {
|
|
it(`should have valid checksum for ${addr}`, () => {
|
|
assert(bech32.deserialize(addr));
|
|
});
|
|
}
|
|
|
|
for (const [addr, script] of validAddresses) {
|
|
it(`should have valid address for ${addr}`, () => {
|
|
let hrp = 'ltc';
|
|
let ret = null;
|
|
|
|
try {
|
|
ret = fromAddress(hrp, addr);
|
|
} catch (e) {
|
|
ret = null;
|
|
}
|
|
|
|
if (ret === null) {
|
|
hrp = 'tltc';
|
|
try {
|
|
ret = fromAddress(hrp, addr);
|
|
} catch (e) {
|
|
ret = null;
|
|
}
|
|
}
|
|
|
|
assert(ret !== null);
|
|
|
|
const output = createProgram(ret.version, ret.program);
|
|
assert.bufferEqual(output, script);
|
|
|
|
const recreate = toAddress(hrp, ret.version, ret.program);
|
|
assert.strictEqual(recreate, addr.toLowerCase());
|
|
});
|
|
}
|
|
|
|
for (const addr of invalidAddresses) {
|
|
it(`should have invalid address for ${addr}`, () => {
|
|
assert.throws(() => fromAddress('ltc', addr));
|
|
assert.throws(() => fromAddress('tltc', addr));
|
|
});
|
|
}
|
|
|
|
for (const [addr, script] of validAddresses) {
|
|
it(`should have valid address for ${addr}`, () => {
|
|
let ret = null;
|
|
|
|
try {
|
|
ret = Address.fromBech32(addr, 'main');
|
|
} catch (e) {
|
|
ret = null;
|
|
}
|
|
|
|
if (ret === null) {
|
|
try {
|
|
ret = Address.fromBech32(addr, 'testnet');
|
|
} catch (e) {
|
|
ret = null;
|
|
}
|
|
}
|
|
|
|
assert(ret !== null);
|
|
|
|
const output = createProgram(ret.version, ret.hash);
|
|
assert.bufferEqual(output, script);
|
|
|
|
const recreate = ret.toBech32();
|
|
assert.strictEqual(recreate, addr.toLowerCase());
|
|
});
|
|
}
|
|
|
|
for (const addr of invalidAddresses) {
|
|
it(`should have invalid address for ${addr}`, () => {
|
|
assert.throws(() => Address.fromBech32(addr, 'main'));
|
|
assert.throws(() => Address.fromBech32(addr, 'testnet'));
|
|
});
|
|
}
|
|
});
|