__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace Jose\Component\Encryption\Serializer;
use Jose\Component\Encryption\JWE;
interface JWESerializer
{
/**
* The name of the serialization method.
*/
public function name(): string;
/**
* Display name of the serialization method.
*/
public function displayName(): string;
/**
* Converts a JWE into a string. If the JWE is designed for multiple recipients and the serializer only supports one
* recipient, the recipient index has to be set.
*/
public function serialize(JWE $jws, ?int $recipientIndex = null): string;
/**
* Loads data and return a JWE object. Throws an exception in case of failure.
*
* @param string $input A string that represents a JWE
*/
public function unserialize(string $input): JWE;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| CompactSerializer.php | File | 3.55 KB | 0664 |
|
| JSONFlattenedSerializer.php | File | 3.65 KB | 0664 |
|
| JSONGeneralSerializer.php | File | 4.19 KB | 0664 |
|
| JWESerializer.php | File | 840 B | 0664 |
|
| JWESerializerManager.php | File | 2.04 KB | 0664 |
|
| JWESerializerManagerFactory.php | File | 1.34 KB | 0664 |
|