Skip to content

Instantly share code, notes, and snippets.

@lucashenning
Created November 3, 2020 12:27
Show Gist options
  • Save lucashenning/e2032b3f83e3fe51760212361a47b346 to your computer and use it in GitHub Desktop.
Save lucashenning/e2032b3f83e3fe51760212361a47b346 to your computer and use it in GitHub Desktop.
Parse a ASN1 DER encoded Sig with ASN1.js
const EcdsaSigAsnParse = asn1.define('EcdsaSig', function(this: any) {
this.seq().obj(
this.key('r').int(),
this.key('s').int(),
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment