Merge pull request #305 from MetaMask/FixEthSign

Fix eth sign with dennis' test input
feature/default_network_editable
kumavis 9 years ago committed by GitHub
commit 8a31313397
  1. 2
      CHANGELOG.md
  2. 14
      app/scripts/lib/id-management.js
  3. 10
      test/unit/id-management-test.js

@ -4,6 +4,7 @@
- Change out export icon for key. - Change out export icon for key.
- Unify copy to clipboard icon - Unify copy to clipboard icon
- Fixed eth.sign behavior.
## 2.4.0 2016-06-20 ## 2.4.0 2016-06-20
@ -11,7 +12,6 @@
- Remove nonfunctional QR code button. - Remove nonfunctional QR code button.
- Make network loading indicator clickable to select accessible network. - Make network loading indicator clickable to select accessible network.
- Show more characters of addresses when space permits. - Show more characters of addresses when space permits.
- Fixed eth.sign behavior.
- Fixed bug when signing messages under 64 hex characters long. - Fixed bug when signing messages under 64 hex characters long.
- Add disclaimer view with placeholder text for first time users. - Add disclaimer view with placeholder text for first time users.

@ -69,10 +69,12 @@ function padWithZeroes (number, length) {
} }
function concatSig (v, r, s) { function concatSig (v, r, s) {
r = padWithZeroes(ethUtil.fromSigned(r), 64) const rSig = ethUtil.fromSigned(r)
s = padWithZeroes(ethUtil.fromSigned(s), 64) const sSig = ethUtil.fromSigned(s)
r = ethUtil.stripHexPrefix(r.toString('hex')) const vSig = ethUtil.bufferToInt(v)
s = ethUtil.stripHexPrefix(s.toString('hex')) const rStr = padWithZeroes(ethUtil.toUnsigned(rSig).toString('hex'), 64)
v = ethUtil.stripHexPrefix(ethUtil.intToHex(v)) const sStr = padWithZeroes(ethUtil.toUnsigned(sSig).toString('hex'), 64)
return ethUtil.addHexPrefix(r.concat(s, v)) const vStr = ethUtil.stripHexPrefix(ethUtil.intToHex(vSig))
return ethUtil.addHexPrefix(rStr.concat(sStr, vStr)).toString('hex')
} }

@ -16,10 +16,11 @@ describe('IdManagement', function() {
}) })
describe('#signMsg', function () { describe('#signMsg', function () {
const address = '0x926cD0393816429a580037475ec23eD65fDC893B' it('passes the dennis test', function() {
const message = '0x96b8d442f4c09a08d266bf37b18219465cfb341c1b3ab9792a6103a93583fdf7' const address = '0x9858e7d8b79fc3e6d989636721584498926da38a'
const privateKey = '0xd291f7aa01b94941b446f260bca42c0752762571428ad4ed6239613c66365cf4' const message = '0x879a053d4800c6354e76c7985a865d2922c82fb5b3f4577b2fe08b998954f2e0'
const expectedResult = '0x04881196121781472543750166203264808665659193717384627772472141185319786561270240926993050673320157359365329096037150419976876479876332927284781689204045461c' const privateKey = '0x7dd98753d7b4394095de7d176c58128e2ed6ee600abe97c9f6d9fd65015d9b18'
const expectedResult = '0x28fcb6768e5110144a55b2e6ce9d1ea5a58103033632d272d2b5cf506906f7941a00b539383fd872109633d8c71c404e13dba87bc84166ee31b0e36061a69e161c'
const idManagement = new IdManagement() const idManagement = new IdManagement()
const exportKeyStub = sinon.stub(idManagement, 'exportPrivateKey', (addr) => { const exportKeyStub = sinon.stub(idManagement, 'exportPrivateKey', (addr) => {
@ -30,4 +31,5 @@ describe('IdManagement', function() {
const result = idManagement.signMsg(address, message) const result = idManagement.signMsg(address, message)
assert.equal(result, expectedResult) assert.equal(result, expectedResult)
}) })
})
}) })

Loading…
Cancel
Save