Skip to content

Commit ed59f6a

Browse files
authored
Merge pull request #1658 from cnotin/patch-1
Describe that "Parse ASN.1 hex string" operation requires an hex string input
2 parents 592745f + dea2b3a commit ed59f6a

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)