Файл: vendor/laravel/framework/src/Illuminate/Contracts/Encryption/StringEncrypter.php
Строк: 41
<?php
namespace IlluminateContractsEncryption;
interface StringEncrypter
{
/**
* Encrypt a string without serialization.
*
* @param string $value
* @return string
*
* @throws IlluminateContractsEncryptionEncryptException
*/
public function encryptString(#[SensitiveParameter] $value);
/**
* Decrypt the given string without unserialization.
*
* @param string $payload
* @return string
*
* @throws IlluminateContractsEncryptionDecryptException
*/
public function decryptString($payload);
}