Added input/output examples to base32 operations

This commit is contained in:
Kelly-Vl 2026-05-03 21:31:23 +08:00
parent ec4f1f5605
commit 500d0fd9c0
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ class FromBase32 extends Operation {
this.name = "From Base32"; this.name = "From Base32";
this.module = "Default"; this.module = "Default";
this.description = "Base32 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers. It uses a smaller set of characters than Base64, usually the uppercase alphabet and the numbers 2 to 7."; this.description = "Base32 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers. It uses a smaller set of characters than Base64, usually the uppercase alphabet and the numbers 2 to 7.<br><br>e.g. <code>NBSWY3DP</code> becomes <code>hello</code>";
this.infoURL = "https://wikipedia.org/wiki/Base32"; this.infoURL = "https://wikipedia.org/wiki/Base32";
this.inputType = "string"; this.inputType = "string";
this.outputType = "byteArray"; this.outputType = "byteArray";

View File

@ -21,7 +21,7 @@ class ToBase32 extends Operation {
this.name = "To Base32"; this.name = "To Base32";
this.module = "Default"; this.module = "Default";
this.description = "Base32 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers. It uses a smaller set of characters than Base64, usually the uppercase alphabet and the numbers 2 to 7."; this.description = "Base32 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers. It uses a smaller set of characters than Base64, usually the uppercase alphabet and the numbers 2 to 7.<br><br>e.g. <code>hello</code> becomes <code>NBSWY3DP</code>";
this.infoURL = "https://wikipedia.org/wiki/Base32"; this.infoURL = "https://wikipedia.org/wiki/Base32";
this.inputType = "ArrayBuffer"; this.inputType = "ArrayBuffer";
this.outputType = "string"; this.outputType = "string";