aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-10-22 02:10:36 +0800
committerDan Finlay <dan@danfinlay.com>2016-10-22 02:10:36 +0800
commitc3e1c5c57f2062155626647e239c2a760f3e4b8a (patch)
tree6cb8a4ab8227c1a9abe6354970d10630619b0ce6 /app/scripts/lib
parent9560ae93ee66cd9466c95c98b6853c2062f21235 (diff)
downloadtangerine-wallet-browser-c3e1c5c57f2062155626647e239c2a760f3e4b8a.tar
tangerine-wallet-browser-c3e1c5c57f2062155626647e239c2a760f3e4b8a.tar.gz
tangerine-wallet-browser-c3e1c5c57f2062155626647e239c2a760f3e4b8a.tar.bz2
tangerine-wallet-browser-c3e1c5c57f2062155626647e239c2a760f3e4b8a.tar.lz
tangerine-wallet-browser-c3e1c5c57f2062155626647e239c2a760f3e4b8a.tar.xz
tangerine-wallet-browser-c3e1c5c57f2062155626647e239c2a760f3e4b8a.tar.zst
tangerine-wallet-browser-c3e1c5c57f2062155626647e239c2a760f3e4b8a.zip
Added SimpleKeyring tests
Diffstat (limited to 'app/scripts/lib')
-rw-r--r--app/scripts/lib/sig-util.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/scripts/lib/sig-util.js b/app/scripts/lib/sig-util.js
new file mode 100644
index 000000000..f8748f535
--- /dev/null
+++ b/app/scripts/lib/sig-util.js
@@ -0,0 +1,23 @@
+const ethUtil = require('ethereumjs-util')
+
+module.exports = {
+
+ concatSig: function (v, r, s) {
+ const rSig = ethUtil.fromSigned(r)
+ const sSig = ethUtil.fromSigned(s)
+ const vSig = ethUtil.bufferToInt(v)
+ const rStr = padWithZeroes(ethUtil.toUnsigned(rSig).toString('hex'), 64)
+ const sStr = padWithZeroes(ethUtil.toUnsigned(sSig).toString('hex'), 64)
+ const vStr = ethUtil.stripHexPrefix(ethUtil.intToHex(vSig))
+ return ethUtil.addHexPrefix(rStr.concat(sStr, vStr)).toString('hex')
+ },
+
+}
+
+function padWithZeroes (number, length) {
+ var myString = '' + number
+ while (myString.length < length) {
+ myString = '0' + myString
+ }
+ return myString
+}