Skip to content

Commit

Permalink
Merge pull request #1658 from cnotin/patch-1
Browse files Browse the repository at this point in the history
Describe that "Parse ASN.1 hex string" operation requires an hex string input
  • Loading branch information
a3957273 committed Feb 3, 2024
2 parents 592745f + dea2b3a commit ed59f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/operations/ParseASN1HexString.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ParseASN1HexString extends Operation {

this.name = "Parse ASN.1 hex string";
this.module = "PublicKey";
this.description = "Abstract Syntax Notation One (ASN.1) is a standard and notation that describes rules and structures for representing, encoding, transmitting, and decoding data in telecommunications and computer networking.<br><br>This operation parses arbitrary ASN.1 data and presents the resulting tree.";
this.description = "Abstract Syntax Notation One (ASN.1) is a standard and notation that describes rules and structures for representing, encoding, transmitting, and decoding data in telecommunications and computer networking.<br><br>This operation parses arbitrary ASN.1 data (encoded as an hex string: use the 'To Hex' operation if necessary) and presents the resulting tree.";
this.infoURL = "https://wikipedia.org/wiki/Abstract_Syntax_Notation_One";
this.inputType = "string";
this.outputType = "string";
Expand Down

0 comments on commit ed59f6a

Please sign in to comment.