bigi: upgrade to 1.1.0
This commit is contained in:
parent
1087ac07de
commit
cd326921bc
2 changed files with 5 additions and 5 deletions
src
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue