indutny / asn1.js

ASN.1 Decoder/Encoder/DSL
MIT License
181 stars 64 forks source link

der: trim leading zeros from integers #115

Open jablko opened 5 years ago

jablko commented 5 years ago

Before

const INTEGER = asn1.define('INTEGER', function() {
  this.int();
});
console.log(INTEGER.encode(Buffer.from('0001', 'hex'))); // <Buffer 02 02 00 01>

After

console.log(INTEGER.encode(Buffer.from('0001', 'hex'))); // <Buffer 02 01 01>