1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 03:12:42 +02:00

Phase out ethereumjs-util from encryptor module.

This commit is contained in:
Kevin Serrano 2016-11-22 11:17:05 -08:00
parent ca819781cb
commit 6dad4f1f20
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4
2 changed files with 5 additions and 6 deletions

View File

@ -6,6 +6,7 @@
- Fix bug that would cause MetaMask to occasionally lose its StreamProvider connection and drop requests.
- Fix bug that would cause the Custom RPC menu item to not appear when Localhost 8545 was selected.
- Point ropsten faucet button to actual faucet.
- Phase out ethereumjs-util from our encryptor module.
## 2.13.8 2016-11-16

View File

@ -1,5 +1,3 @@
var ethUtil = require('ethereumjs-util')
module.exports = {
// Simple encryption methods:
@ -101,10 +99,10 @@ function keyFromPassword (password) {
}
function serializeBufferFromStorage (str) {
str = ethUtil.stripHexPrefix(str)
var buf = new Uint8Array(str.length / 2)
for (var i = 0; i < str.length; i += 2) {
var seg = str.substr(i, 2)
var stripStr = (str.slice(0, 2) === '0x') ? str.slice(2) : str
var buf = new Uint8Array(stripStr.length / 2)
for (var i = 0; i < stripStr.length; i += 2) {
var seg = stripStr.substr(i, 2)
buf[i / 2] = parseInt(seg, 16)
}
return buf