bigi: upgrade to 1.1.0

This commit is contained in:
Daniel Cousens 2014-05-13 19:10:20 +10:00
parent 1087ac07de
commit cd326921bc
2 changed files with 5 additions and 5 deletions

View file

@ -46,7 +46,7 @@
"compile": "./node_modules/.bin/browserify ./src/index.js -s Bitcoin | ./node_modules/.bin/uglifyjs > bitcoinjs-min.js"
},
"dependencies": {
"bigi": "1.0.0",
"bigi": "1.1.0",
"crypto-js": "3.1.2-3",
"secure-random": "0.2.1"
}

View file

@ -88,8 +88,8 @@ function verifyRaw(ecparams, e, r, s, Q) {
* Takes two BigIntegers representing r and s and returns a byte array.
*/
function serializeSig(r, s) {
var rBa = r.toByteArraySigned()
var sBa = s.toByteArraySigned()
var rBa = r.toDERInteger()
var sBa = s.toDERInteger()
var sequence = []
sequence.push(0x02); // INTEGER
@ -130,8 +130,8 @@ function parseSig(buffer) {
var sB = buffer.slice(2 + offset)
return {
r: BigInteger.fromByteArraySigned(rB),
s: BigInteger.fromByteArraySigned(sB)
r: BigInteger.fromDERInteger(rB),
s: BigInteger.fromDERInteger(sB)
}
}