Files
backend/src/Service/Crypt/Interfaces/AESCryptServiceInterface.php
T
2026-05-27 19:36:32 +03:00

9 lines
200 B
PHP

<?php
namespace App\Service\Crypt\Interfaces;
interface AESCryptServiceInterface
{
public function encrypt(string $plaintext): string;
public function decrypt(string $ciphertext): ?string;
}