Files
api/services/nginx/app/classes/encrypt.php
T
Jeppe B 2a6a86c9c3 Resolve backend Qodana critical and high findings (#314)
Resolve recommended-profile Critical and High findings, retain narrow analyzer exceptions, and update the edge-broker WebSocket dependency to a non-vulnerable release.
2026-07-17 05:44:16 +02:00

20 lines
263 B
PHP

<?php
namespace classes;
use interfaces\encrypt_i;
class encrypt implements encrypt_i
{
public function encrypt(string $data): string
{
return $data;
}
public function decrypt(string $data): string
{
return $data;
}
}