File: /www/wwwroot/www.ycfawu.com/wp-content/plugins/tidio-live-chat/src/Encryption/EncryptionService.php
<?php
namespace TidioLiveChat\Encryption;
if (!defined('WPINC')) {
die('File loaded directly. Exiting.');
}
use TidioLiveChat\Encryption\Exception\DecryptionFailedException;
interface EncryptionService
{
/**
* @param string $value
* @return string
*/
public function encrypt($value);
/**
* @param string $encryptedString
* @return string
* @throws DecryptionFailedException
*/
public function decrypt($encryptedString);
}