From 01dc8fa3960a0f20ccc16464d4e7bd9d2c92db8b Mon Sep 17 00:00:00 2001 From: shimon Date: Mon, 20 Jan 2025 16:16:38 +0200 Subject: [PATCH] debug --- app/init.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/init.php b/app/init.php index ab4529406b..3efdda4118 100644 --- a/app/init.php +++ b/app/init.php @@ -607,7 +607,11 @@ Database::addFilter( } $value = json_decode($value, true); $key = System::getEnv('_APP_OPENSSL_KEY_V' . $value['version']); - + var_dump([ + 'key' => $key, + 'method' => $value['method'], + 'data' => $value['data'], + ]); return OpenSSL::decrypt($value['data'], $value['method'], $key, 0, hex2bin($value['iv']), hex2bin($value['tag'])); } );