nifty-wallet/app/scripts/lib/encryptor.js

136 lines
3.4 KiB
JavaScript
Raw Normal View History

2016-10-14 15:59:07 -07:00
var ethUtil = require('ethereumjs-util')
module.exports = {
2016-10-14 16:26:44 -07:00
// Simple encryption methods:
encrypt,
decrypt,
2016-10-14 16:26:44 -07:00
// More advanced encryption methods:
keyFromPassword,
encryptWithKey,
decryptWithKey,
2016-10-14 16:26:44 -07:00
// Buffer <-> String methods
convertArrayBufferViewtoString,
convertStringToArrayBufferView,
// Buffer <-> Hex string methods
2016-10-14 15:59:07 -07:00
serializeBufferForStorage,
serializeBufferFromStorage,
2016-10-20 11:33:18 -07:00
// Buffer <-> base64 string methods
encodeBufferToBase64,
decodeBase64ToBuffer,
}
// Takes a Pojo, returns encrypted text.
function encrypt (password, dataObj) {
return keyFromPassword(password)
.then(function (passwordDerivedKey) {
return encryptWithKey(passwordDerivedKey, dataObj)
})
}
function encryptWithKey (key, dataObj) {
var data = JSON.stringify(dataObj)
var dataBuffer = convertStringToArrayBufferView(data)
2016-10-14 16:26:44 -07:00
var vector = global.crypto.getRandomValues(new Uint8Array(16))
return global.crypto.subtle.encrypt({
name: 'AES-GCM',
2016-10-14 16:28:08 -07:00
iv: vector,
2016-10-14 15:59:07 -07:00
}, key, dataBuffer).then(function(buf){
var buffer = new Uint8Array(buf)
2016-10-14 16:26:44 -07:00
var vectorStr = serializeBufferForStorage(vector)
return serializeBufferForStorage(buffer) + vectorStr
})
}
// Takes encrypted text, returns the restored Pojo.
function decrypt (password, text) {
return keyFromPassword(password)
.then(function (key) {
return decryptWithKey(key, text)
})
}
function decryptWithKey (key, text) {
2016-10-14 16:26:44 -07:00
const parts = text.split('0x')
const encryptedData = serializeBufferFromStorage(parts[1])
const vector = serializeBufferFromStorage(parts[2])
2016-10-14 16:28:08 -07:00
return crypto.subtle.decrypt({name: 'AES-GCM', iv: vector}, key, encryptedData)
.then(function(result){
const decryptedData = new Uint8Array(result)
2016-10-14 15:59:07 -07:00
const decryptedStr = convertArrayBufferViewtoString(decryptedData)
const decryptedObj = JSON.parse(decryptedStr)
return decryptedObj
})
}
function convertStringToArrayBufferView (str) {
var bytes = new Uint8Array(str.length)
for (var i = 0; i < str.length; i++) {
bytes[i] = str.charCodeAt(i)
}
return bytes
}
function convertArrayBufferViewtoString (buffer) {
var str = ''
for (var i = 0; i < buffer.byteLength; i++) {
str += String.fromCharCode(buffer[i])
}
return str
}
function keyFromPassword (password) {
var passBuffer = convertStringToArrayBufferView(password)
return global.crypto.subtle.digest('SHA-256', passBuffer)
.then(function (passHash){
return global.crypto.subtle.importKey('raw', passHash, {name: 'AES-GCM'}, false, ['encrypt', 'decrypt'])
})
}
2016-10-14 15:59:07 -07:00
function serializeBufferFromStorage (str) {
str = ethUtil.stripHexPrefix(str)
2016-10-14 16:28:08 -07:00
var buf = new Uint8Array(str.length / 2)
for (var i = 0; i < str.length; i += 2) {
2016-10-14 15:59:07 -07:00
var seg = str.substr(i, 2)
2016-10-14 16:28:08 -07:00
buf[i / 2] = parseInt(seg, 16)
2016-10-14 15:59:07 -07:00
}
return buf
}
// Should return a string, ready for storage, in hex format.
function serializeBufferForStorage (buffer) {
var result = '0x'
var len = buffer.length || buffer.byteLength
for (var i = 0; i < len; i++) {
result += unprefixedHex(buffer[i])
}
return result
}
function unprefixedHex (num) {
var hex = num.toString(16)
while (hex.length < 2) {
hex = '0' + hex
}
return hex
}
2016-10-20 11:33:18 -07:00
function encodeBufferToBase64 (buf) {
var b64encoded = btoa(String.fromCharCode.apply(null, buf))
return b64encoded
}
function decodeBase64ToBuffer (base64) {
var u8_2 = new Uint8Array(atob(b64encoded).split("")
.map(function(c) {
return c.charCodeAt(0)
}))
}