From cb613745821a26ad7493e4ad1c6c959a2c3b9284 Mon Sep 17 00:00:00 2001 From: Naiel <109038805+naielv@users.noreply.github.com> Date: Sun, 4 Jan 2026 20:17:07 +0100 Subject: [PATCH] Modify TS_encrypt to skip callback execution Commented out callback and return statements in TS_encrypt function. --- src/app_modules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app_modules.js b/src/app_modules.js index ea128ad..d6cb285 100644 --- a/src/app_modules.js +++ b/src/app_modules.js @@ -611,8 +611,8 @@ function TS_decrypt(input, secret, callback, table, id) { } function TS_encrypt(input, secret, callback, mode = "RSA") { // Skip encryption - callback(input); - return; + //callback(input); + //return; // Encrypt given value for at-rest storage using CryptoJS AES. // Always return string of form RSA{} via callback. try {