19 declare(strict_types=1);
59 $this->salt_factory =
new Factory();
62 $algorithm =
new SHA1();
79 $this->payload_builder =
new Builder();
85 Disposition $disposition,
89 $payload = $this->payload_builder->shortFile(
94 if ($until !==
null) {
95 $payload->setUntil($until->getTimestamp());
98 return $this->signing_serializer->sign(
100 $this->salt_factory->create(
'stream')
110 return $this->payload_builder->shortFileFromRaw(
$data);
120 if ($until !==
null) {
121 $payload->setUntil($until->getTimestamp());
124 return $this->signing_serializer->sign(
126 $this->salt_factory->create($salt)
134 return $this->signing_serializer->verify(
136 $this->salt_factory->create($salt)
SigningSerializer $signing_serializer
verify(string $token, string $salt)
verifyStreamToken(string $token)
The salt is combined with the secret key to derive a unique key for distinguishing different contexts...
if(count($parts) !=3) $payload
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
sign(array $data, string $salt, ?\DateTimeImmutable $until=null)
getSignedStreamToken(FileStream $stream, string $filename, Disposition $disposition, int $user_id, ?\DateTimeImmutable $until=null)
__construct(SecretKeyRotation $key_rotation)
The base interface for all filesystem streams.
Key rotation can provide an extra layer of mitigation against an attacker discovering a secret key...