Skip to content

Commit 22a873c

Browse files
committed
Describe that "Parse ASN.1 hex string" operation requires an hex string input
Just in case the title of the operation doesn't make it clear enough
1 parent c6da0c6 commit 22a873c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/operations/ParseASN1HexString.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ParseASN1HexString extends Operation {
2020

2121
this.name = "Parse ASN.1 hex string";
2222
this.module = "PublicKey";
23-
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.";
23+
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.";
2424
this.infoURL = "https://wikipedia.org/wiki/Abstract_Syntax_Notation_One";
2525
this.inputType = "string";
2626
this.outputType = "string";

0 commit comments

Comments
 (0)