diff --git a/src/core/lib/Base91.mjs b/src/core/lib/Base91.mjs index 55a21f5b..da9e296f 100644 --- a/src/core/lib/Base91.mjs +++ b/src/core/lib/Base91.mjs @@ -7,6 +7,10 @@ * @author CyberChef Base91 Implementation * @copyright Crown Copyright 2024 * @license Apache-2.0 + * @modified-by Izai Alejandro Zalles Merino (ialejandrozalles) + * @modified-date 2025-10-01 + * © 2025 Izai Alejandro Zalles Merino + */ import OperationError from "../errors/OperationError.mjs"; @@ -29,6 +33,8 @@ for (let i = 0; i < BASE91_ALPHABET.length; i++) { * * @param {Uint8Array} data - Input byte array * @returns {string} Base91 encoded string + * @modified-by Izai Alejandro Zalles Merino (ialejandrozalles) + */ export function encodeBase91(data) { let accumulator = 0; @@ -71,6 +77,8 @@ export function encodeBase91(data) { * * @param {string} str - Base91 encoded string * @returns {Uint8Array} Decoded byte array + * @modified-by Izai Alejandro Zalles Merino (ialejandrozalles) + */ export function decodeBase91(str) { let accumulator = 0; diff --git a/src/core/operations/FromBase91.mjs b/src/core/operations/FromBase91.mjs index da226745..921434dd 100644 --- a/src/core/operations/FromBase91.mjs +++ b/src/core/operations/FromBase91.mjs @@ -1,6 +1,6 @@ /** - * @author CyberChef Base91 Implementation - * @copyright Crown Copyright 2024 + * @author Izai Alejandro Zalles Merino (ialejandrozalles) + * @copyright © 2025 Izai Alejandro Zalles Merino * @license Apache-2.0 */ diff --git a/src/core/operations/ToBase91.mjs b/src/core/operations/ToBase91.mjs index 892f4c38..88fa5cfb 100644 --- a/src/core/operations/ToBase91.mjs +++ b/src/core/operations/ToBase91.mjs @@ -1,6 +1,6 @@ /** - * @author CyberChef Base91 Implementation - * @copyright Crown Copyright 2024 + * @author Izai Alejandro Zalles Merino (ialejandrozalles) + * @copyright © 2025 Izai Alejandro Zalles Merino * @license Apache-2.0 */