Merge branch 'master' into fontChange

feature/default_network_editable
Frankie 9 years ago
commit 9e42f1f3a7
  1. 2
      .nvmrc
  2. 5
      CHANGELOG.md
  3. 2
      app/manifest.json
  4. 14
      app/scripts/lib/id-management.js
  5. 24
      test/unit/id-management-test.js

@ -1 +1 @@
6.0 v6.0.0

@ -2,8 +2,12 @@
## Current Master ## Current Master
## 2.4.2 2016-06-22
- 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.
- Fix behavior of batched outbound transactions.
## 2.4.0 2016-06-20 ## 2.4.0 2016-06-20
@ -11,7 +15,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.

@ -1,7 +1,7 @@
{ {
"name": "__MSG_appName__", "name": "__MSG_appName__",
"short_name": "Metamask", "short_name": "Metamask",
"version": "2.4.1", "version": "2.4.2",
"manifest_version": 2, "manifest_version": 2,
"description": "__MSG_appDescription__", "description": "__MSG_appDescription__",
"icons": { "icons": {

@ -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,18 +16,20 @@ 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) => {
assert.equal(addr, address) assert.equal(addr, address)
return privateKey return privateKey
}) })
const result = idManagement.signMsg(address, message) const result = idManagement.signMsg(address, message)
assert.equal(result, expectedResult) assert.equal(result, expectedResult)
})
}) })
}) })

Loading…
Cancel
Save