You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.8 KiB
69 lines
2.8 KiB
10 years ago
|
'use strict';
|
||
|
|
||
|
var _ = require('lodash');
|
||
|
var chai = require('chai');
|
||
|
var sinon = require('sinon');
|
||
|
var should = chai.should();
|
||
10 years ago
|
var WalletUtils = require('../lib/walletutils');
|
||
10 years ago
|
|
||
|
|
||
|
var aText = 'hola';
|
||
|
var aPubKey = '03bec86ad4a8a91fe7c11ec06af27246ec55094db3d86098b7d8b2f12afe47627f';
|
||
|
var aPrivKey = '09458c090a69a38368975fb68115df2f4b0ab7d1bc463fc60c67aa1730641d6c';
|
||
|
var aSignature = '3045022100d6186930e4cd9984e3168e15535e2297988555838ad10126d6c20d4ac0e74eb502201095a6319ea0a0de1f1e5fb50f7bf10b8069de10e0083e23dbbf8de9b8e02785';
|
||
|
|
||
|
var otherPubKey = '02555a2d45e309c00cc8c5090b6ec533c6880ab2d3bc970b3943def989b3373f16';
|
||
|
|
||
10 years ago
|
describe('WalletUtils', function() {
|
||
10 years ago
|
|
||
10 years ago
|
describe('#hashMessage', function() {
|
||
10 years ago
|
it('Should create a hash', function() {
|
||
10 years ago
|
var res = WalletUtils.hashMessage(aText);
|
||
10 years ago
|
res.toString('hex').should.equal('4102b8a140ec642feaa1c645345f714bc7132d4fd2f7f6202db8db305a96172f');
|
||
|
});
|
||
|
});
|
||
|
|
||
10 years ago
|
describe('#signMessage', function() {
|
||
|
it('Should sign a message', function() {
|
||
|
var sig = WalletUtils.signMessage(aText, aPrivKey);
|
||
10 years ago
|
should.exist(sig);
|
||
|
sig.should.equal(aSignature);
|
||
|
});
|
||
|
it('Should fail to sign with wrong args', function() {
|
||
|
(function() {
|
||
10 years ago
|
WalletUtils.signMessage(aText, aPubKey);
|
||
10 years ago
|
}).should.throw('Number');
|
||
|
});
|
||
|
});
|
||
|
|
||
10 years ago
|
describe('#verifyMessage', function() {
|
||
10 years ago
|
it('Should fail to verify a malformed signature', function() {
|
||
10 years ago
|
var res = WalletUtils.verifyMessage(aText, 'badsignature', otherPubKey);
|
||
10 years ago
|
should.exist(res);
|
||
|
res.should.equal(false);
|
||
|
});
|
||
|
it('Should fail to verify a null signature', function() {
|
||
10 years ago
|
var res = WalletUtils.verifyMessage(aText, null, otherPubKey);
|
||
10 years ago
|
should.exist(res);
|
||
|
res.should.equal(false);
|
||
|
});
|
||
|
it('Should fail to verify with wrong pubkey', function() {
|
||
10 years ago
|
var res = WalletUtils.verifyMessage(aText, aSignature, otherPubKey);
|
||
10 years ago
|
should.exist(res);
|
||
|
res.should.equal(false);
|
||
|
});
|
||
|
it('Should verify', function() {
|
||
10 years ago
|
var res = WalletUtils.verifyMessage(aText, aSignature, aPubKey);
|
||
10 years ago
|
should.exist(res);
|
||
|
res.should.equal(true);
|
||
|
});
|
||
|
});
|
||
10 years ago
|
describe('#signMessage #verifyMessage round trip', function() {
|
||
10 years ago
|
it('Should sign and verify', function() {
|
||
|
var aLongerText = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
|
||
10 years ago
|
var sig = WalletUtils.signMessage(aLongerText, aPrivKey);
|
||
|
WalletUtils.verifyMessage(aLongerText, sig, aPubKey).should.equal(true);
|
||
10 years ago
|
});
|
||
|
});
|
||
|
});
|