| Current Path : /home/flapst5/www/wp-content/plugins/tidio-live-chat/src/Encryption/ |
| Current File : /home/flapst5/www/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);
}