9 lines
200 B
PHP
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;
|
|
} |