Your IP : 216.73.216.215


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