From 500d0fd9c09f7bfaeb6eda7363a722d437299077 Mon Sep 17 00:00:00 2001 From: Kelly-Vl Date: Sun, 3 May 2026 21:31:23 +0800 Subject: [PATCH] Added input/output examples to base32 operations --- src/core/operations/FromBase32.mjs | 2 +- src/core/operations/ToBase32.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/operations/FromBase32.mjs b/src/core/operations/FromBase32.mjs index 8ee0f1f8..c2a5cd69 100644 --- a/src/core/operations/FromBase32.mjs +++ b/src/core/operations/FromBase32.mjs @@ -22,7 +22,7 @@ class FromBase32 extends Operation { this.name = "From Base32"; 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.

e.g. NBSWY3DP becomes hello"; this.infoURL = "https://wikipedia.org/wiki/Base32"; this.inputType = "string"; this.outputType = "byteArray"; diff --git a/src/core/operations/ToBase32.mjs b/src/core/operations/ToBase32.mjs index 44eb8b48..d5e035cc 100644 --- a/src/core/operations/ToBase32.mjs +++ b/src/core/operations/ToBase32.mjs @@ -21,7 +21,7 @@ class ToBase32 extends Operation { this.name = "To Base32"; 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.

e.g. hello becomes NBSWY3DP"; this.infoURL = "https://wikipedia.org/wiki/Base32"; this.inputType = "ArrayBuffer"; this.outputType = "string";